diff --git a/themes/varia/templates/stream.html b/themes/varia/templates/stream.html index b3b73f9..7aafa87 100644 --- a/themes/varia/templates/stream.html +++ b/themes/varia/templates/stream.html @@ -1,25 +1,28 @@ -{% extends "page.html" %} - -{% if page.slug == 'stream' %} +{% extends "base.html" %} +{% block title %}{{ page.title }}{%endblock%} {% block content %} -
- - {{ pages }} - -
streaming...
+
+
+ {{ page.content }} - {% for page in pages %} - {% if page.slug == 'stream' %} -
- {% for img in page.stream %} -
- {% endfor %} -
+ {% if page.modified %} +

+ Last updated: {{ page.locale_modified }} +

{% endif %} - {% endfor %} + + + {% for page in pages %} + {% if page.slug == 'stream' %} +
+ {% for img in page.stream %} +
+ {% endfor %} +
+ {% endif %} + {% endfor %} - -{% endblock %} +
-{% endif %} +{% endblock %}