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.
 
 
 
 
 

59 lines
1.6 KiB

{% extends "base.html" %}
{% block content %}
{% if articles %}
<section id="content">
{% block indexpage %}
{% for page in pages %}
{% if page.title == 'Federated Ecosystems' %}
<div id="intro" class="box">
<div id="intro_wrapper">{{ page.summary }} <a href="{{page.url}}">→ read more</a></div>
</div>
{% endif %}
{% if page.title == 'Gallery' %}
<div class="gallery">
<h2 id="gallery" class="break">Wtt�F gallery</h2>
{{ page.content }}
</div>
{% endif %}
{% endfor %}
{% endblock indexpage %}
<h2 id="posts" class="break">Wtt�F posts</h2>
{% for article in articles_page.object_list %}
{% if article.category != 'gathering' %}
<div class="post box">
<article>
<h1 class="entry-title p-name">
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
</h1>
<div class="entry-subtitle">
<span class="entry-category">
{{ article.category }}
</span>
about
<span class="entry-tags">
{% for tag in article.tags %}
<span itemprop="keywords">
<a href="{{ SITEURL }}/{{ tag.url }}" rel="tag">{{ tag }}</a>
</span>
{% endfor %}
, </span>
published on
<span class="entry-date dt-published">{{ article.date | strftime('%d %B %Y') }}</span>
</div>
</article>
</div>
{% endif %}
{% endfor %}
{% for page in pages %}
{% if page.title == 'iii-agenda' %}
<div class="events">
<h2 id="events" class="break">Wtt�F gatherings</h2>
{{ page.content }}
</div>
{% endif %}
{% endfor %}
</section>
{% endif %}
{% endblock content %}