bookforge/templates/components/typography.html
2026-01-23 13:56:30 +01:00

13 lines
236 B
HTML

{% macro heading(title) %}
<div class="d-flex justify-content-between align-items-center">
<h1 class="mb-4">
{{ title }}
</h1>
{% if caller is defined %}
<div>
{{ caller() }}
</div>
{% endif %}
</div>
{% endmacro %}