jean-cloud_website/themes/jean-cloud/templates/index.html

21 lines
406 B
HTML
Raw Normal View History

2020-03-02 23:01:32 +00:00
{% 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 %}