You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
613 B
21 lines
613 B
4 years ago
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
{% block content_title %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% for article in articles_page.object_list %}
|
||
|
<article class="hentry">
|
||
|
<header>
|
||
|
<h2 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
|
||
|
</header>
|
||
|
<div class="entry-content"> {{ article.summary }} </div>
|
||
|
<footer class="post-info"></footer>
|
||
|
</article></li>
|
||
|
{% endfor %}
|
||
|
|
||
|
<!-- {% if articles_page.has_other_pages() %} -->
|
||
|
<!-- {% include 'pagination.html' %} -->
|
||
|
<!-- {% endif %} -->
|
||
|
|
||
|
{% endblock content %}
|