14 lines
451 B
Twig
14 lines
451 B
Twig
<div{{ attributes }}>
|
|
<div class="flex flex-col bg-sky-950/40 border-neutral-700 border-t-4 border-t-orange-500 rounded-xl">
|
|
<div class="p-4 md:p-5">
|
|
<h3 class="mb-4 text-lg font-bold text-white">
|
|
{{ title }}
|
|
</h3>
|
|
|
|
<div class="{{ contentClass|default('flex flex-col rounded-md') }}">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|