40 lines
953 B
Plaintext
40 lines
953 B
Plaintext
<div id="c-wiki-pages">
|
|
<div id="a-show">
|
|
<%= render "sidebar" %>
|
|
|
|
<section id="content">
|
|
<h1 id="wiki-page-title">
|
|
|
|
<%= @wiki_page.pretty_title %>
|
|
|
|
<% if @wiki_page.is_locked? %>
|
|
(locked)
|
|
<% end %>
|
|
</h1>
|
|
|
|
<div id="wiki-page-body" class="prose">
|
|
<%= format_text(@wiki_page.body) %>
|
|
|
|
<%= wiki_page_alias_and_implication_list(@wiki_page) %>
|
|
</div>
|
|
|
|
<div id="wiki-page-posts">
|
|
<% if Post.fast_count(@wiki_page.title) > 0 %>
|
|
<h2>Posts</h2>
|
|
<% end %>
|
|
<%= @wiki_page.post_set.presenter.post_previews_html(self) %>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Wiki - <%= @wiki_page.pretty_title %> - <%= Danbooru.config.app_name %>
|
|
<% end %>
|
|
|
|
<% content_for(:html_header) do %>
|
|
<meta name="description" content="<%= @wiki_page.presenter.blurb %>"></meta>
|
|
<% end %>
|
|
|
|
<%= render "secondary_links" %>
|