Files
danbooru/app/views/wiki_pages/index.html.erb

19 lines
504 B
Plaintext

<%= render "sidebar" %>
<% content_for(:content) do %>
<h1>Wiki</h1>
<%= table_for @wiki_pages, width: "100%" do |t| %>
<% t.column "Title" do |wiki_page| %>
<span class="category-<%= wiki_page.category_name %>"><%= link_to_wiki wiki_page.title %></span>
<% end %>
<% t.column "Last edited" do |wiki_page| %>
<%= time_ago_in_words_tagged(wiki_page.updated_at) %>
<% end %>
<% end %>
<%= numbered_paginator(@wiki_pages) %>
<% end %>
<%= render "secondary_links" %>