live-event.html 689 B

12345678910111213141516171819202122232425262728293031323334
  1. {% extends "/html/base.html" %}
  2. <!--
  3. This is to be used while an event post is live. after live, it takes the normal
  4. video page.
  5. in our ops guide, we have creating live stream and creating a video from a live
  6. stream. the change would be made there. start live stream with layout live-event,
  7. change to video layout in latter.
  8. -->
  9. {%block subtitle %}: {{post.title}}{% endblock %}
  10. {% block head %}
  11. {% include "/html/partials/video-head.html" %}
  12. {% endblock %}
  13. {% block content %}
  14. <div id="custom-page">
  15. <div id="page-header">
  16. <h2>{{post.title}}</h2>
  17. </div>
  18. {% include "/html/partials/video-player.html" %}
  19. {{post.content|safe}}
  20. </div>
  21. {% endblock %}