12345678910111213141516171819202122232425262728 |
- {% extends "/html/base.html" %}
- {%block subtitle %}: {{post.title}}{% endblock %}
- {% block content %}
- <div id="custom-page">
- <div id="page-header">
- <h2>EPISODE {{post.title}}</h2>
- </div>
- <div>
- <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>
- </div>
-
- {% include "/html/post-content.html" %}
-
-
- <div id="prev-next">
- {% if post.prev %}
- <a href="{{post.prev.uri}}">« {{post.prev.title}}</a>
- {% endif %}
- {% if post.next %}
- <a class="right" href="{{post.next.uri}}">{{post.next.title}} »</a>
- {% endif %}
- </div>
- </div>
- {% endblock %}
|