1
0
Fork 0
mirnet.org/themes/mir/layouts/partials/header.html

17 lines
703 B
HTML
Raw Normal View History

2024-09-12 15:47:13 -04:00
<section class="flex py-12 px-5 gap-4 flex-col md:flex-row mx-auto container ">
2024-09-12 13:41:14 -04:00
<div class="w-full relative inline-block">
2024-09-12 19:23:44 -04:00
<div class="flex-col md:flex hidden bg-[#f1f5fc] p-4 rounded-lg">
<img class="relative object-cover aspect-[12/10] h-96 rounded-lg" src="{{ .Params.headerImg }}">
</img>
</div>
2024-09-12 13:48:19 -04:00
<div class="absolute inset-0 bg-white opacity-20 rounded-lg pointer-events-none"></div>
2024-09-12 13:41:14 -04:00
</div>
<div class="w-full">
<p class="lg:w-2/3 mx-auto text-4xl sm:text-5xl uppercase text-left title-font mb-4">
{{ .Params.headerTitle }}
</p>
<p class="lg:w-2/3 text-md mx-auto leading-relaxed text-base">
{{ .Params.headerDesc }}
</p>
</div>
</section>