python-gallery/onlylegs/templates/macros/header.html
2023-05-29 10:34:25 +00:00

10 lines
323 B
HTML

{% macro header_small(title, subtitle, buttons) %}
<div class="banner-small">
<div class="banner-content">
<h1 class="banner-header">{{ title }}</h1>
<p class="banner-info">{{ subtitle }}</p>
<div class="pill-row">{{ buttons }}</div>
</div>
</div>
{% endmacro %}