13 lines
267 B
HTML
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 %}
|