1
1
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2026-06-02 00:19:23 +00:00
Files
privacyguides.org/layouts/_shortcodes/title-card.html
T

9 lines
341 B
HTML
Raw Normal View History

2026-05-19 14:40:13 -05:00
{{- $logo := .Get "logo" -}}
2026-05-19 13:39:48 -05:00
<div class="pg:title-card hx:last-of-type:mb-0 hx:rounded-lg hx:p-6 hx:mt-4 hx:group">
2026-05-19 14:40:13 -05:00
{{- with $logo -}}
<img loading="lazy" decoding="async" src="{{ $logo | safeURL }}" aria-hidden="true" width="100" height="100">
{{- end -}}
{{ .InnerDeindent | $.Page.RenderString (dict "display" "block") }}
2026-05-19 13:39:48 -05:00
</div>