Skip to content

Instantly share code, notes, and snippets.

@code-nation
Last active February 27, 2016 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code-nation/cd40251bf7d7a16b4de1 to your computer and use it in GitHub Desktop.
Save code-nation/cd40251bf7d7a16b4de1 to your computer and use it in GitHub Desktop.
Step 2 of 2: Add Next and Previous links to blog posts on your NationBuilder site
{% if previous_post.id.size > 0 %}
<div class="padtop padbottom">
<a href="{{ previous_post.url }}" class="submit-button btn btn-primary">Previous post: "{{ previous_post.headline }}"</a>
</div>
{% endif %}
{% if next_post.id.size > 0 %}
<div class="padtop padbottom">
<a href="{{ next_post.url }}" class="submit-button btn btn-primary">Next: "{{ next_post.headline }}"</a>
</div>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment