21 lines
406 B
HTML
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 %}
|