yt-episode.html 790 B

12345678910111213141516171819202122232425262728
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{post.title}}{% endblock %}
  3. {% block content %}
  4. <div id="custom-page">
  5. <div id="page-header">
  6. <h2>EPISODE {{post.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. {% include "/html/post-content.html" %}
  12. <div id="prev-next">
  13. {% if post.prev %}
  14. <a href="{{post.prev.uri}}">&laquo; {{post.prev.title}}</a>
  15. {% endif %}
  16. {% if post.next %}
  17. <a class="right" href="{{post.next.uri}}">{{post.next.title}} &raquo;</a>
  18. {% endif %}
  19. </div>
  20. </div>
  21. {% endblock %}