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
#!/bin/sh | |
# Installation: save to /usr/local/bin/allthethings | |
# and chmod +x /usr/local/bin/allthethings | |
# Usage: allthethings update | |
# allthethings install | |
if [ -f "Gemfile" ]; then | |
echo "bundler" |
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
<ul class="prev-next cf"> | |
{% set params = {section: 'blog', order: 'postDate desc', limit: null} %} | |
{% set entry_prev = entry.getPrev(params) %} | |
{% set entry_next = entry.getNext(params) %} | |
{% if entry_prev %}<li class="prev"><a title="{{ entry_prev.title }}" href="{{entry_prev.url}}">Previous Post</a></li>{% endif %} | |
{% if entry_next %}<li class="next"><a title="{{ entry_next.title }}" href="{{entry_next.url}}">Next Post</a></li>{% endif %} | |
</ul> |
OlderNewer