video.html 441 B

12345678910111213141516171819202122232425
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{post.title}}{% endblock %}
  3. {% block head %}
  4. {% include "/html/partials/video-head.html" %}
  5. {% endblock %}
  6. {% block content %}
  7. <div id="custom-page">
  8. <div id="page-header">
  9. <h2>{{post.title}}</h2>
  10. </div>
  11. {% include "/html/partials/video-player.html" %}
  12. {{post.content|safe}}
  13. {% include "/html/partials/post-pagination.html" %}
  14. </div>
  15. {% endblock %}