39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
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>
|
|
|
|
<% if params[:redirected_from].present? %>
|
|
<div class="hint redirected-from">Redirected from <%= link_to params[:redirected_from], show_or_new_wiki_pages_path(:title => params[:redirected_from], :no_redirect => true) %>.</div>
|
|
<% end %>
|
|
|
|
<div id="wiki-page-body" class="prose">
|
|
<%= format_text(@wiki_page.body) %>
|
|
|
|
<%= wiki_page_alias_and_implication_list(@wiki_page) %>
|
|
</div>
|
|
|
|
<%= wiki_page_post_previews(@wiki_page) %>
|
|
</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" %>
|