jean-cloud_website/themes/jean-cloud/templates/index.html
Adrian Amaglio 46e92edf43 🔥 big clean
2020-03-03 00:01:32 +01:00

21 lines
406 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
{% for article in articles %}
{% if article.category != 'Meta' %}
<a href="{{article.relative_source_path}}">
<li>
<em>{{ article.title }}</em>
by
{{ article.author }}
{{ article.category }}
</li>
</a>
{% endif %}
{% endfor %}
</ul>
{% endblock content %}