24 lines
620 B
HTML
24 lines
620 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
{% for article in articles_page.object_list %}
|
|
<h1><a href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">{{ article.title }}</a></h1>
|
|
<p class="post-meta">
|
|
Posted on {{ article.locale_date }}
|
|
{% if article.tags %}
|
|
• Tagged with
|
|
{% for tag in article.tags %}
|
|
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</p>
|
|
{{ article.content }}
|
|
{% endfor %}
|
|
|
|
{% if articles_page.has_other_pages() %}
|
|
{% include 'pagination.html' %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|