pmd/docs/_includes/custom/series_customizing_next.html

11 lines
407 B
HTML
Raw Normal View History

2016-09-09 20:27:54 -04:00
<p>{% assign series_pages = site.tags.series_customizing %}
{% for p in pages %}
{% if p.series == "Customizing PMD" %}
{% assign nextTopic = page.weight | plus: "1" %}
{% if p.weight == nextTopic %}
<a href="{{p.url | remove: "/"}}"><button type="button" class="btn btn-primary">Next: {{p.weight}} {{p.short_title}}</button></a>
{% endif %}
{% endif %}
{% endfor %}
</p>