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

36 lines
1.1 KiB
Plaintext

<header class="title">
<div class="container">
</div>
</header>
<% if @page.type_of != 2 %>
<section>
<div class="container" style="border-left: 4px solid rgba(0,0,0,0.2); border-right: 1px solid rgba(0,0,0,0.2);">
<h1><%= @page.title %></h1>
<%= raw @page.full_text %>
</div>
</section>
<% elsif @page.type_of == 2 && @page.article && !@page.article.published_page_articles.blank? %>
<section>
<div class="container" style="border-left: 4px solid rgba(0,0,0,0.2); border-right: 1px solid rgba(0,0,0,0.2);">
<h1><%= @page.title %></h1>
<% for pas in @page.article.published_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 %>