26 lines
646 B
Plaintext
26 lines
646 B
Plaintext
<h2><%= l(:label_index_by_date) %></h2>
|
|
|
|
<% if @pages.empty? %>
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
<% end %>
|
|
|
|
<% @pages_by_date.keys.sort.reverse.each do |date| %>
|
|
<h3><%= format_date(date) %></h3>
|
|
<ul>
|
|
<% @pages_by_date[date].each do |page| %>
|
|
<li><%= link_to page.pretty_title, :action => 'index', :page => page.title %></li>
|
|
<% end %>
|
|
</ul>
|
|
<% end %>
|
|
|
|
<% content_for :sidebar do %>
|
|
<%= render :partial => 'sidebar' %>
|
|
<% end %>
|
|
|
|
<div class="contextual">
|
|
<% unless @pages.empty? %>
|
|
<%= l(:label_export_to) %> <%= link_to 'HTML', {:action => 'special', :page => 'export'}, :class => 'icon icon-html' %>
|
|
<% end %>
|
|
</div>
|
|
|