freedom/layouts/partials/banner-item.html

8 lines
216 B
HTML
Raw Normal View History

2023-01-04 16:59:09 -05:00
{{if .Params.image }}
<section id="banner" style='background-image:url({{.Params.image}});'>
<div id="banner-text">
<h1>{{.Title}}</h1>
<p>{{.Params.description}}</p>
</div>
</section>
{{end}}