comicsite/_includes/comicnav.html
etherware-novice 62e9235e66
RSS Feed!
2024-08-01 16:26:04 -05:00

23 lines
536 B
HTML

<a href="/">back</a><br><br>
<a href="/assets/rss/comic.xml">
<img src="/assets/images/blinkers/rss.png" />
RSS
</a>
{% for post in site.comic %}
{% if post.title == "comic index" %}
{% continue %}
{% endif %}
{% if post.header %}
<h4>{{ post.header }}</h4>
{% endif %}
{% if page.url == post.url %}
<img src="/assets/images/site_arrow.gif" height=5%
class="inline">
{% endif %}
<a href="{{ post.url }}"
{% if page.url == post.url %} id="current" {% endif %}>
{{ post.title | downcase }}</a><br>
{% endfor %}