12 lines
206 B
HTML
12 lines
206 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<ul>
|
|
{% for article in articles %}
|
|
<li><a href="{{SITE_URL}}/{{ article.url }}">{{ article.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock content %}
|