blob: 8cd88a689e975395f1c25027a7c5de8e6c842778 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<div class="article">
<h2><%= @page.title %></h2>
<h3><%= date_for_page @page %>, <%= @page.user.try(:login) %></h3>
<hr class="subtitle" />
<div class="abstract"><p><em><%= sanitize( @page.abstract )%></em></p></div>
<div id="headline_image"><%= headline_image %></div>
<div class="body"><%= aggregate?(@page.body) %></div>
</div>
<%= will_paginate(@content_collection) if @content_collection %>
|