comicsite/_includes/comicnav.html
2024-07-26 14:38:36 -05:00

13 lines
267 B
HTML

<a href="/">back</a><br><br>
{% for post in site.comic %}
{% if post.title == "comic index" %}
{% continue %}
{% endif %}
{% if post.header %}
<h4>{{ post.header }}</h4>
{% endif %}
<a href="{{ post.url }}">{{ post.title | downcase }}</a><br>
{% endfor %}