lost-train/theme/templates/category.html

26 lines
601 B
HTML

{% extends "base.html" %}
{% block content_title %}<span class="o-30">{{ SITENAME }}</span> / <span style="font-size:2.6em;">{{ category }}</span>{% endblock %}
{% block content %}
{% for article in articles %}
<article class="title">
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
{{ article.title }}
</a>
</article>
<div>
{{ article.content }}
</div>
{% if not HIDE_DATE %}
<time class="db w-100 tr pb4 o-30" datetime="{{ article.date.isoformat() }}">
{{ article.date.isoformat() }}
</time>
{% endif %}
{% endfor %}
{% endblock %}