Files
danbooru/app/views/wiki_pages/_excerpt.html.erb
2013-03-23 22:53:33 -04:00

18 lines
574 B
Plaintext

<!--
- post_set
-->
<div id="wiki-page-excerpt" style="display: none;">
<% if post_set.wiki_page %>
<div class="prose">
<%= format_text(post_set.wiki_page.presenter.excerpt) %>
<p>Read the <%= link_to "full article", wiki_page_path(post_set.wiki_page.id) %>.</p>
</div>
<% else %>
<% if post_set.tag_string.present? %>
<p>There is currently no wiki page for the tag "<%= post_set.tag_string %>". You can <%= link_to "create one", new_wiki_page_path(:wiki_page => {:title => post_set.tag_string}) %>.</p>
<% end %>
<% end %>
</div>