index.html 849 B

12345678910111213141516171819202122232425262728
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{page.title}}{% endblock %}
  3. {% block content %}
  4. <div id="custom-page">
  5. <div id="page-header">
  6. <h2>{{page.title}}</h2>
  7. </div>
  8. {% if page.toc %}{{page.toc|safe}}{% endif %}
  9. <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/SM8xq8dYuCI?rel=0&amp;controls=0&amp;showinfo=0&amp;loop=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
  10. {{page.content|safe}}
  11. <div id="prev-next">
  12. {% if page.prev %}
  13. <a href="{{page.prev.uri}}">&laquo; {{page.prev.title}}</a>
  14. {% endif %}
  15. {% if all page.prev page.next %}
  16. ||
  17. {% endif %}
  18. {% if page.next %}
  19. <a href="{{page.next.uri}}">{{page.next.title}} &raquo;</a>
  20. {% endif %}
  21. </div>
  22. </div>
  23. {% endblock %}