Files
Notes/notes-service/vendor/loco-rs/docs-site/templates/casts/page.html
T
2026-08-01 16:11:49 +03:00

29 lines
749 B
HTML

{# Default page template used for blog contents #}
{% extends "page.html" %}
{% block body %}
{% set page_class = "casts single" %}
{% endblock body %}
{% block header %}
{{ macros_header::header(current_section='casts')}}
{% endblock header %}
{% block content %}
<div class="container" role="document">
<article class="max-w-[1024px] mx-auto my-[2rem] md:my-[8rem]">
{{ youtube::youtube(id=page.extra.id) }}
{% if page.extra.lead %}<p class="lead">{{ page.extra.lead | safe }}</p>{% endif %}
<div class="prose markdown mt-8 mx-auto">
{{ macros_publish::page_publish_metadata(page=page) }}
<h1 class="mb-3">{{ page.title }}</h1>
{{ page.content | safe }}
</div>
</article>
</div>
{% endblock content %}