Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <% page_articles.each_with_index do |article, i| %>
  2. <% if article.data.layout == 'post' %>
  3. <%= partial "post", :locals => { :article => article} %>
  4. <% elsif article.data.layout == 'micro' %>
  5. <%= partial "micro", :locals => { :article => article} %>
  6. <% end %>
  7. <% end %>
  8.  
  9. ---
  10. layout: post
  11. l: post
  12. title: "Foo"
  13. date: 2012-10-22 15:14:01
  14. categories: Bar
  15. tags:
  16. ---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement