simple_crm/app/views/site/preview.html.erb

34 lines
854 B
Plaintext

<header class="title">
<div class="container">
<h1><%= @page.title %></h1>
</div>
</header>
<% if @page.type_of != 2 %>
<section>
<div class="container">
<%= raw @page.full_text %>
</div>
</section>
<% elsif @page.type_of == 2 && @page.article && !@page.article.all_page_articles.blank? %>
<section>
<div class="container">
<% for pas in @page.article.all_page_articles %>
<div class="post-preview">
<a href="/site/<%= pas.friendly_id %>">
<h2 class="post-title">
<%= pas.title %>
</h2>
<h3 class="post-subtitle">
<%= raw pas.small_text %>
</h3>
</a>
<p class="post-meta">Opublikowany <%= pas.created_date %> przez
<a href="#"><%= pas.created_name %></a></p>
</div>
<hr>
<% end %>
</div>
</section>
<% end %>