23 lines
1000 B
HTML
23 lines
1000 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content">
|
|
{% block content_title %}
|
|
{% endblock %}
|
|
|
|
<ol id="post-list">
|
|
{% for article in articles_page.object_list %}
|
|
<ul><article class="hentry">
|
|
<header> <span class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span> </header>
|
|
<footer class="post-info">
|
|
<time class="published" datetime="{{ article.date.isoformat() }}"> <sup>{{ article.locale_date }}</sup> </time>
|
|
</footer><!-- /.post-info -->
|
|
<div class="entry-content"> {{ article.content }}<div id="moaaar"><a href="/{{ article.url }}">moaaar</a></div> </div><!-- /.entry-content -->
|
|
</article></ul>
|
|
{% endfor %}
|
|
</ol><!-- /#posts-list -->
|
|
{% if articles_page.has_other_pages() %}
|
|
{% include 'pagination.html' %}
|
|
{% endif %}
|
|
</section><!-- /#content -->
|
|
{% endblock content %}
|