{% extends "./base.html" %} {% load i18n %} {% load static %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% load django_vite %} {% if comments_are_enabled %} {% load comments %} {% endif %} {% block css %} {{ block.super }} {% if comments_are_enabled %} {% endif %} {% endblock css %} {% block meta %} {{ block.super }} {% if blog.noindex %} {% endif %} {% if use_audio_player %} {% endif %} {% endblock %} {% block body_class %}template-blogpage{% endblock %} {% block title %}{% if page.seo_title %}{{ page.seo_title }}{% else %}{{ page.title }}{% endif %}{% endblock title %} {% block content %} {% include "./post_body.html" with render_detail=True %} {% if comments_are_enabled %} {% render_comment_list for page %} {% render_comment_form for page %} {% endif %}
{% endblock %} {% block javascript %} {{ block.super }} {% vite_hmr_client app="cast-bootstrap5" %} {% vite_asset 'src/gallery/image-gallery-bs5.ts' app="cast-bootstrap5" %} {% vite_asset 'src/audio/podlove-player.ts' app="cast-bootstrap5" %} {% endblock javascript %}