This commit is contained in:
Toks
2013-06-11 10:37:17 -04:00
parent 88b23f6f57
commit 30a164e77b
3 changed files with 10 additions and 0 deletions

View File

@@ -6,6 +6,8 @@
<div class="prose">
<%= format_text(@artist.notes) %>
</div>
<p><%= link_to "View wiki page", @artist.wiki_page %></p>
<% end %>
<div>

View File

@@ -7,6 +7,10 @@
<div class="prose">
<%= format_text(post_set.wiki_page.presenter.excerpt) %>
<% if post_set.wiki_page.artist %>
<p><%= link_to "View artist", post_set.wiki_page.artist %></p>
<% end %>
<%= wiki_page_alias_and_implication_list(post_set.wiki_page) %>
<p>Read the <%= link_to "full article", wiki_page_path(post_set.wiki_page.id) %>.</p>

View File

@@ -15,6 +15,10 @@
<div id="wiki-page-body" class="prose">
<%= format_text(@wiki_page.body) %>
<% if @wiki_page.artist %>
<p><%= link_to "View artist", @wiki_page.artist %></p>
<% end %>
<%= wiki_page_alias_and_implication_list(@wiki_page) %>
</div>