blog.notmyidea.org/mnmlist/templates/category.html

13 lines
No EOL
520 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ category }}</h1>
{% if articles %}
{% for article in articles | selectattr("category", "eq", "journal") %}
<section class="section index">
<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
<h1><a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
{{ article.content|striptags|truncate(200) }}
</section>
{% endfor %}
{% endif %}
{% endblock %}