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.
25 lines
885 B
25 lines
885 B
4 weeks ago
|
<div id="content-container" class="disable-scrollbar">
|
||
|
<div id="content-title" class="title">{{ title | safe }}</div>
|
||
|
<p>This is our activities!</p>
|
||
|
<div class="astr-line">✲ ✲ ✲</div>
|
||
|
<div id="content-body">
|
||
|
<div id="activity-list">
|
||
|
{% for key, value in activities.items() %}
|
||
|
<a href="/{{key}}">
|
||
|
<div class="activity">
|
||
|
<h1 class="activity-title"> {{ key }} ({{ value.date }})</h1>
|
||
|
<div class="activity-image"><img src="{{ value.source }}"></div>
|
||
|
</div>
|
||
|
</a>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="astr-line">✲ ✲ ✲</div>
|
||
|
<div id="content-metadata">
|
||
|
{%if table != None %}
|
||
|
<div id="wiki-box">
|
||
|
{{ table | safe }}
|
||
|
</div>
|
||
|
{%endif%}
|
||
|
</div>
|
||
|
</div>
|