18 lines
456 B
HTML
18 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> </div>
|
||
|
|
</div>
|