website/themes/hugoplate/layouts/shortcodes/section.html

6 lines
391 B
HTML
Raw Normal View History

2024-02-20 14:51:00 +00:00
<section class="bg-cover items-center pt-32 pb-32 {{ with .Get "light-text" }}light-text {{ end }}" style="{{ with .Get "fixed" }}background-attachment: fixed;{{ end }}background-image: url('{{ with .Get "background-image" }}{{ . }}{{ end }}');{{ with .Get "background-color" }}background-color: {{ . }}{{ end }};">
<div class="container items-center" >
{{ .Inner }}
</div>
</section>