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.
15 lines
382 B
15 lines
382 B
{% extends "layout.html" %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block body %}
|
|
<div class="left">
|
|
<img src="">
|
|
</div>
|
|
<div class="right">
|
|
<a href="{{ this. url }}">{{ this.title }}</a>
|
|
{{ this.body }}
|
|
{% set all = site.query('/agenda') %}
|
|
<ul>
|
|
<li>So far Platform Extratonalitaet organised {{ all.count() }} events!</li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|
|
|