Remove breaks that were _breaking_ prev/next links

This commit is contained in:
Brandon Keepers
2017-08-07 15:06:38 -05:00
parent 5c0fa4761a
commit 219848acb8

View File

@@ -42,12 +42,10 @@ layout: default
{% for doc in site.pages %}
{% if page.next == doc.path %}
{% assign next = doc %}
{% break %}
{% endif %}
{% if doc.next == page.path %}
{% assign previous = doc %}
{% break %}
{% endif %}
{% endfor %}