17 lines
832 B
HTML
17 lines
832 B
HTML
<div class="m-4 rounded-lg p-4 min-h-[40.27px] flex flex-row justify-between items-center bg-[#f1f5fc]">
|
|
{{ with site.GetPage "_index.md" }}
|
|
<div class="w-full flex flex-row justify-between items-center">
|
|
<a class="flex justify-center items-center mb-2 sm:mb-0" aria-label="Back to home" href="/">
|
|
<img class="h-[40.2667px]" alt="{{ .Params.logoAlt }}" src="{{ .Params.logo }}" loading="lazy" />
|
|
</a>
|
|
<p class="text-center">Copyright © {{ now.Year }} <strong>{{ .Params.copyname }}</strong>. All rights reserved.</p>
|
|
<div class="flex flex-row gap-2 items-center">
|
|
{{ range .Params.social.main }}
|
|
<a target="_blank" aria-label="{{ .label }}" href="{{ .url | safeURL }}" class="flex items-center">
|
|
{{ .icon | safeHTML }}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|