12 lines
353 B
Plaintext
12 lines
353 B
Plaintext
<% if wiki_page.tag.present? && !wiki_page.tag.empty? %>
|
|
<div class="recent-posts">
|
|
<h2 class="recent-posts-header">
|
|
<%= link_to "Posts", posts_path(tags: wiki_page.title) %>
|
|
</h2>
|
|
|
|
<div class="recent-posts-previews">
|
|
<%= post_previews_html(wiki_page.tag.posts.limit(8), tags: wiki_page.title) %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|