Created
October 31, 2013 19:52
-
-
Save rwboyer/7255959 to your computer and use it in GitHub Desktop.
middleman partial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section> | |
| <h3>Featured Articles</h3> | |
| <% blog.articles.select {|a| a.page.data.featured }.each do |post| %> | |
| <a class="side" href=<%= "#{post.url}" %>> | |
| <img class="side" src=<%= "#{post.featured}" %>></img> | |
| </a> | |
| <p><%= post.title %></p> | |
| <% end %> | |
| </section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment