yt-episode.html 869 B

123456789101112131415161718192021222324252627282930
  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. <div>
  9. <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/{{page.yt-episode-video-id}}?rel=0" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
  10. </div>
  11. {% if page.toc %}{{page.toc|safe}}{% endif %}
  12. {{page.content|safe}}
  13. <div id="prev-next">
  14. {% if page.prev %}
  15. <a href="{{page.prev.uri}}">&laquo; {{page.prev.title}}</a>
  16. {% endif %}
  17. {% if all page.prev page.next %}
  18. ||
  19. {% endif %}
  20. {% if page.next %}
  21. <a href="{{page.next.uri}}">{{page.next.title}} &raquo;</a>
  22. {% endif %}
  23. </div>
  24. </div>
  25. {% endblock %}