Fix regression causing parent/child posts to be laid out as a grid instead of as a single row of posts.
14 lines
302 B
Plaintext
14 lines
302 B
Plaintext
<div class="post-gallery post-gallery-<%= gallery_type %> post-gallery-<%= size %>">
|
|
<% if posts.empty? %>
|
|
<p>No posts found.</p>
|
|
<% else %>
|
|
<div class="posts-container">
|
|
<% posts.each do |post| -%>
|
|
<% %><%= post -%>
|
|
<% end -%>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= footer %>
|
|
</div>
|