mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
10 lines
323 B
HTML
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 %}
|