gallowelds.com/themes/gallo/layouts/partials/header.html

17 lines
464 B
HTML
Raw Normal View History

2024-05-22 14:22:07 -04:00
<div
2024-05-22 21:37:08 -04:00
style="
background-blend-mode: multiply;
background: url({{ .Site.Params.headerImg }}) rgba(0, 0, 0, 0.6);
background-position: center;
background-size: cover;
"
class="flex justify-start min-h-96"
2024-05-22 14:22:07 -04:00
>
<div
class="flex flex-col ml-16 mb-8 place-self-center text-white max-w-4xl gap-4"
>
<h1 class="text-3xl font-bold">{{ .Site.Params.headerTitle }}</h1>
2024-05-22 21:37:08 -04:00
<p class="text-md">{{ .Site.Params.headerDesc }}</p>
</div>
2024-05-22 14:22:07 -04:00
</div>