freedom/layouts/partials/banner-item.html

8 lines
233 B
HTML
Raw Normal View History

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