Browse Source

temporary home for the stream trigger added

master
mb @ ts 6 years ago
parent
commit
249ebeb434
  1. 39
      themes/varia/templates/page.html

39
themes/varia/templates/page.html

@ -15,27 +15,26 @@
</header> </header>
</section> </section>
<div id="page-content"> <div id="page-content">
{{ page.content }} {{ page.content }}
{% if page.modified %} {% if page.modified %}
<p> <p>
Last updated: {{ page.locale_modified }} Last updated: {{ page.locale_modified }}
</p> </p>
{% endif %}
<!-- {% import 'translations.html' as translations with context %} -->
<!-- {{ translations.translations_for(page) }} -->
</div>
{% for page in pages %}
{{ page.slug }}
{% if page.slug == 'stream' %}
!!!
{{ page.stream }}
{% for img in page.stream %}
{{ img }}
<div class="container" style="background-image: url(/stream/{{ img }})"></div>
{% endfor %}
{% endif %} {% endif %}
{% endfor %} <!-- {% 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 %}
<div class="container" style="background-image: url(/stream/{{ img }})"></div>
{% endfor %}
</div>
{% endif %}
{% endfor %}
</div>
{% endblock %} {% endblock %}

Loading…
Cancel
Save