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.
37 lines
748 B
37 lines
748 B
4 years ago
|
|
||
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %} Events list - {{ SITENAME }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
{% if events_list %}
|
||
|
<ul class="post-list">
|
||
|
{% for evstart, evend, event in events_list %}
|
||
|
<li>
|
||
|
<p>
|
||
|
<a href="../{{event.slug}}.html">
|
||
|
<b>{{event['title']}}</b>
|
||
|
</a>
|
||
|
</p>
|
||
|
<p>
|
||
|
{% if evstart.date() == evend.date() %}
|
||
|
From {{evstart}} to {{evend.time()}}
|
||
|
{% else %}
|
||
|
From {{evstart}} to {{evend}}
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
|
||
|
{% if event.location %}
|
||
|
<p>Location: {{event.location}}</p>
|
||
|
{% endif %}
|
||
|
|
||
|
<p>{{event['summary']}}</p>
|
||
|
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
|
||
|
{% endblock %}
|