michalvankodev-site/templates/components/talent_card.html
Michal Vanko a2fdec755b
Some checks failed
test / cargo test (push) Failing after 1m24s
portfoliooooo
2024-10-23 16:01:48 +02:00

17 lines
564 B
HTML

{% macro talent_card(svg, heading, description) %}
<section class="flex border rounded bg-white p-3">
<aside class="flex justify-center items-center pr-3">
<svg role="img" aria-label="{{svg}} icon" aria-hidden="true" class="fill-blue-950 h-12 w-12 md:h-16 md:w-16">
<use href="#{{svg}}" />
</svg>
</aside>
<section>
<header>
<h3 class="text-lg font-medium mb-1 md:text-2xl">{{heading}}</h3>
</header>
<p class="text-sm leading-tight text-slate-800 md:text-lg md:leading-tight">{{description|safe}}</p>
</section>
</section>
{% endmacro %}