Skip to content

Instantly share code, notes, and snippets.

@renatocontaifer
Created February 16, 2015 02:03
Show Gist options
  • Save renatocontaifer/4a4654613d3e93b35ca6 to your computer and use it in GitHub Desktop.
Save renatocontaifer/4a4654613d3e93b35ca6 to your computer and use it in GitHub Desktop.
Middleman Article Navigation
ul
li.previous
- prev_article = current_article.previous_article
- if prev_article
a href="#{prev_article.url}" rel="prev" title="Previous article: #{prev_article.title}" Previous
li.next
- next_article = current_article.next_article
- if next_article
a href="#{next_article.url}" rel="next" title="Next article: #{next_article.title}" Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment