episode.html 679 B

1234567891011121314151617181920212223242526
  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>EPISODE {{page.title}}</h2>
  7. </div>
  8. <p>VIDEO {{page.video-url}}</p>
  9. {% if page.toc %}{{page.toc|safe}}{% endif %}
  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 %}