12345678910111213141516171819202122232425262728 |
- {% extends "/html/base.html" %}
- {%block subtitle %}: {{page.title}}{% endblock %}
- {% block content %}
- <div id="custom-page">
- <div id="page-header">
- <h2>{{page.title}}</h2>
- </div>
- {% if page.toc %}{{page.toc|safe}}{% endif %}
- <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/SM8xq8dYuCI?rel=0&controls=0&showinfo=0&loop=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
- {{page.content|safe}}
- <div id="prev-next">
- {% if page.prev %}
- <a href="{{page.prev.uri}}">« {{page.prev.title}}</a>
- {% endif %}
- {% if all page.prev page.next %}
- ||
- {% endif %}
- {% if page.next %}
- <a href="{{page.next.uri}}">{{page.next.title}} »</a>
- {% endif %}
- </div>
- </div>
- {% endblock %}
|