lost-train/theme/templates/category.html

26 lines
618 B
HTML

{% extends "base.html" %}
{% block content_title %}<div style="font-size:0.6em;" class="w-100 fl">{{ SITENAME }}</div><div class="w-100 fl"> - {{ category }}</div>{% 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 %}