Skip to content

Instantly share code, notes, and snippets.

View vis-kid's full-sized avatar

ed wassermann vis-kid

  • Milky Way
View GitHub Profile
@scottelundgren
scottelundgren / middleman-blog-tags-posts-alphabetically
Last active September 22, 2017 15:56
List all tags alphabetically in a middleman blog and list all posts alphabetically with that tag
<% blog.tags.sort.each do |tag, articles| %>
<h2>Posts tagged '<%= tag.capitalize %>'</h2>
<ul>
<% articles.sort_by(&:title).each do |article| %>
<li><%= link_to article.title, article %></li>
<% end %>
</ul>
<% end %>