1234567891011121314151617181920212223 |
- {% extends "base.html" %}
- {% block content %}
- <section id="content">
- {% block content_title %}
- <h2>All articles</h2>
- {% endblock %}
- <ol id="post-list">
- {% for article in articles_page.object_list %}
- <li><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>
- <footer class="post-info">
- <abbr class="published" title="{{ article.date.isoformat() }}"> {{ article.locale_date }} </abbr>
- {% if article.author %}<address class="vcard author">By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a></address>{% endif %}
- </footer><!-- /.post-info -->
- <div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content -->
- </article></li>
- {% endfor %}
- </ol><!-- /#posts-list -->
- {% include 'pagination.html' %}
- </section><!-- /#content -->
- {% endblock content %}
|