Browse Source

small attempt to make a seperate stream template, but it doesn's connect to the page template.... work is progress!

master
mb @ ts 6 years ago
parent
commit
552efdc9ff
  1. 27
      themes/varia/templates/stream.html

27
themes/varia/templates/stream.html

@ -0,0 +1,27 @@
<!-- {% 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 %}
-->
Loading…
Cancel
Save