comicsite/_comic/index.html
2024-07-25 11:48:02 -05:00

13 lines
225 B
HTML

---
name: comic index
layuot: default
---
<ul>
{% for post in site.comic %}
{% if post.url == page.url %}
{% continue %}
{% endif %}
<a href="{{ post.url }}">{{ post.title | downcase }}</a><br>
{% endfor %}
</ul>