live-event.html 390 B

123456789101112131415161718192021222324252627
  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. </div>
  14. {% endblock %}