9 lines
383 B
HTML
9 lines
383 B
HTML
<h1 class="{% if badge %}flex items-center {% endif %}mb-4 text-3xl font-extrabold leading-none tracking-tight text-gray-900 dark:text-white">
|
|
{{ children }}
|
|
{% if badge %}
|
|
<span class="bg-blue-100 text-blue-800 text-2xl font-semibold me-2 px-2.5 py-0.5 rounded dark:bg-blue-200 dark:text-blue-800 ms-2">
|
|
{{ badge }}
|
|
</span>
|
|
{% endif %}
|
|
</h1>
|