40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% for article in articles_page.object_list %}
|
|
<article>
|
|
<header>
|
|
<h2><a href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">{{ article.title }}</a></h2>
|
|
<p>
|
|
{% trans %}Posted on{% endtrans %} {{ article.locale_date }} {% trans %}in{% endtrans %} <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
|
|
{% if article.tags %}
|
|
• {% trans %}Tagged with{% endtrans %}
|
|
{% for tag in article.tags %}
|
|
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if DISQUS_SITENAME %}
|
|
• <a href="{{ SITEURL }}/{{ article.url }}#disqus_thread">{% trans %}Leave a comment{% endtrans %}</a>
|
|
{% endif %}
|
|
</p>
|
|
</header>
|
|
<div>
|
|
{% if summarise or article.metadata['summary'] or SUMMARY_MAX_LENGTH %}
|
|
{{ article.summary }}
|
|
<a class="btn" href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">{% trans %}Continue reading{% endtrans %}</a>
|
|
{% else %}
|
|
{{ article.content }}
|
|
{% endif %}
|
|
</div>
|
|
{% if not loop.last %}
|
|
<hr />
|
|
{% endif %}
|
|
</article>
|
|
{% endfor %}
|
|
|
|
{% include "partial/pagination.html" %}
|
|
{% endblock %}
|
|
|
|
{% block additional_js %}
|
|
{% include "partial/disqus_count.html" %}
|
|
{% endblock %}
|