sarsooxyz.hugo/layouts/shortcodes/image-box-link.html
Andy Pack 4b1bf40b28
All checks were successful
Deploy Hugo site to Prod / Build Container (push) Successful in 7m4s
fonts, theme update, icons
2024-10-18 18:50:54 +01:00

12 lines
454 B
HTML

<div>
<div class="box-link">
<span aria-hidden="true"></span>
<img loading="lazy" alt="" src="{{ .Get "src" }}">
<div class="text-section">
<p style="font-size:30px;">
<a class="center-link-text" href="{{ .Get "href" }}">{{ .Get "title" }}</a>
</p>{{if isset .Params "caption" }}
<p class="silkscreen-regular">{{ .Get "caption" }}</p>{{end}}
</div>
</div>
</div>