Varia's website
https://varia.zone
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.
60 lines
1.7 KiB
60 lines
1.7 KiB
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content" class="index">
|
|
{% 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 %}
|
|
{% if article.category %}
|
|
<article class="hentry {{article.category}}">
|
|
{% endif %}
|
|
<div class="article-info">
|
|
<span class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
|
|
<div class="event-details">
|
|
{% if article.event_start %}
|
|
{{ article.event_start }}
|
|
{% set past = '' %}
|
|
{% if article.event_start < article.date.now() %}
|
|
{% set past = ' past-event' %}
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="summary {{past}}">{{ article.summary }}
|
|
<span>
|
|
<a href="{{ article.url }}">
|
|
{% if DEFAULT_LANG == 'en' %}
|
|
read more
|
|
{% elif DEFAULT_LANG == 'nl' %}
|
|
lees meer
|
|
{% endif %}
|
|
</a>
|
|
</span>
|
|
</div>
|
|
<div class="separator"><hr></div>
|
|
<div class="post-info">
|
|
{% if article.category %}
|
|
<div class="categories">
|
|
<span itemprop="articleSection">
|
|
→ <a href="{{ SITEURL }}/{{ article.category.url }}" rel="category">{{ article.category }}</a>
|
|
</span>
|
|
</div>
|
|
{% endif %} {% if article.tags %}
|
|
<div class="tags">
|
|
Tags: {% for tag in article.tags %}
|
|
<span itemprop="keywords">
|
|
<a href="{{ SITEURL }}/{{ tag.url }}" rel="tag">{{ tag }}</a>
|
|
</span> {% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</article>
|
|
{% endfor %}
|
|
</div><!-- /#posts-list -->
|
|
|
|
</section><!-- /#content -->
|
|
{% endblock content %}
|
|
|