You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
656 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }}{%endblock%}
{% block bodyclass %}home{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content }}
<p><a href="{{ SITEURL }}/"><strong>← Back</strong></a></p>
{% endblock %}
{% block sidebar %}
{% for activity in categories|get_category_articles('activities') %}
<details>
<summary>
<h2>{{ activity.title }}</h2>
<dl>
{{ activity.date|display_if_set('date')}}
{{ activity.location|display_if_set('Location')}}
</dl>
</summary>
{{ activity.content }}
</details>
{% endfor %}
{% endblock %}