2017-07-06 14:28:42 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page.title }}{%endblock%}
|
2018-03-06 21:42:19 +01:00
|
|
|
|
2017-07-06 14:28:42 +02:00
|
|
|
{% block content %}
|
2018-02-27 08:26:28 +01:00
|
|
|
<section id="content" class="index">
|
|
|
|
<header id="banner">
|
|
|
|
{% for p in pages %}
|
2018-03-06 12:04:11 +01:00
|
|
|
|
|
|
|
<!-- header -->
|
2018-02-27 08:26:28 +01:00
|
|
|
{% if p.title == 'header' %}
|
|
|
|
<div id="title">{{ p.content }}</div>
|
|
|
|
{% endif %}
|
2018-03-06 12:04:11 +01:00
|
|
|
|
2018-02-27 08:26:28 +01:00
|
|
|
{% endfor %}
|
|
|
|
</header>
|
|
|
|
</section>
|
2018-02-01 20:59:42 +01:00
|
|
|
<div id="page-content">
|
2018-03-07 10:32:00 +01:00
|
|
|
{{ page.content }}
|
2017-07-06 14:28:42 +02:00
|
|
|
|
2018-03-07 10:32:00 +01:00
|
|
|
{% if page.modified %}
|
|
|
|
<p>
|
|
|
|
Last updated: {{ page.locale_modified }}
|
|
|
|
</p>
|
2018-03-06 21:42:19 +01:00
|
|
|
{% endif %}
|
2018-03-07 10:32:00 +01:00
|
|
|
<!-- {% import 'translations.html' as translations with context %} -->
|
|
|
|
<!-- {{ translations.translations_for(page) }} -->
|
|
|
|
|
|
|
|
{% for page in pages %}
|
|
|
|
{% if page.slug == 'stream' %}
|
|
|
|
<div id="stream" class="overview">
|
|
|
|
{% for img in page.stream %}
|
2018-03-07 10:38:22 +01:00
|
|
|
<div class="container" style="background-image: url(https://vvvvvvaria.org/stream/{{ img }})"></div>
|
2018-03-07 10:32:00 +01:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
2018-03-06 21:42:19 +01:00
|
|
|
|
2017-07-06 14:28:42 +02:00
|
|
|
{% endblock %}
|