hugo-sr2/layouts/_partials/half-section.html
2026-01-10 13:42:14 +00:00

17 lines
456 B
HTML

{{ $back := "" }}
{{ if .Params.background }}
{{ with resources.Get .Params.background }}
{{ $back = .RelPermalink }}
{{ else }}
{{ errorf "Unable to find %s in assets directory" . }}
{{ end }}
{{ end }}
<div
class="half-section"
style="background-image:url({{ $back }});background-size:cover;background-repeat:no-repeat;background-position:center center;">
<div class="half-section__content">
{{ .Content }}
</div>
<div>&nbsp;</div>
</div>