123456789101112131415161718192021222324252627 |
- {% extends "/html/base.html" %}
- {%block subtitle %}: {{post.title}}{% endblock %}
- {% block head %}
- {% include "/html/partials/video-head.html" %}
- {% endblock %}
- {% block content %}
- <div id="custom-page">
- <div id="page-header">
- <h2>{{post.title}}</h2>
- </div>
- {% include "/html/partials/video-player.html" %}
- {{post.content|safe}}
- </div>
- {% endblock %}
|