forked from varia/varia.website
many many many Varia's websites, work in progress: https://many.vvvvvvaria.org
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.
30 lines
1.1 KiB
30 lines
1.1 KiB
7 years ago
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<section id="content">
|
||
|
{% block content_title %}
|
||
|
{% endblock %}
|
||
|
{% if articles_page.has_other_pages() %}
|
||
|
{% include 'pagination.html' %}
|
||
|
{% endif %}
|
||
|
<div id="post-list">
|
||
|
{% for article in articles_page.object_list %}
|
||
|
<article class="hentry">
|
||
|
<div class="article-info"> <span class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
|
||
|
<div class="post-info">
|
||
|
<time class="published" datetime="{{ article.date.isoformat() }}"> <sup>{{ article.locale_date }}</sup> </time>
|
||
|
<div class ='article_tags'>
|
||
|
{%- for tag in article.tags %}
|
||
|
{{ tag }}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</div></div><!-- /.post-info -->
|
||
|
<div class="entry-content"> {{ article.content }}
|
||
|
<div class="separator"><hr></div>
|
||
|
</div><!-- /.entry-content -->
|
||
|
</article>
|
||
|
{% endfor %}
|
||
|
</div><!-- /#posts-list -->
|
||
|
|
||
|
</section><!-- /#content -->
|
||
|
{% endblock content %}
|