2020-04-30 16:12:44 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
|
|
{% if articles %}
|
|
|
|
{% for article in articles %}
|
|
|
|
<a href="{{ SITE_URL }}/{{ article.url }}">{{article.title}}</a><br>
|
|
|
|
<p>{{ article.date }}</p>
|
|
|
|
<p>---</p>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock content %}
|