Varia's website
https://varia.zone
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.
27 lines
475 B
27 lines
475 B
7 years ago
|
<!-- {% extends "page.html" %}
|
||
|
|
||
|
{% if page.slug == 'stream' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<section id="content" class="index">
|
||
|
|
||
|
{{ pages }}
|
||
|
|
||
|
<div>streaming...</div>
|
||
|
|
||
|
{% 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 %}
|
||
|
|
||
|
</section>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% endif %}
|
||
|
|
||
|
-->
|