15 lines
510 B
HTML
15 lines
510 B
HTML
{% for post in site.categories.music %}
|
|
{% if post.url == page.url %}
|
|
{% assign post_index0 = forloop.index0 %}
|
|
{% assign post_index1 = forloop.index %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% for post in site.categories.music %}
|
|
{% if post_index0 == forloop.index %}
|
|
{% assign next_post = post.url %}
|
|
{% endif %}
|
|
{% if post_index1 == forloop.index0 %}
|
|
{% assign prev_post = post.url %}
|
|
{% endif %}
|
|
{% endfor %}
|