forked from Git/hugo-story
1
0
Fork 0

Delete 'exampleSite/layouts/partials/banner.html'

This commit is contained in:
Olivier 2023-07-02 00:04:35 +02:00
parent 31aeb0fb13
commit 668d3c2dd3
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
<!-- Banner -->
<section class="banner {{ .style }}">
<div class="content">
{{ with .title }}<h1>{{ . }}</h1>{{ end }}
{{ with .subtitle }}<p class="major">{{ . | safeHTML }}</p>{{ end }}
{{ with .content }}<p>{{ . | safeHTML }}</p>{{ end }}
{{ with .button }}<ul class="actions stacked">
<li><a href="{{ .link }}" class="button primary large wide smooth-scroll-middle">{{ .label }}</a></li>
</ul>{{ end }}
</div>
{{ with .image }}<div class="image">
<img src="{{.}}" alt="Hugo Story" />
</div>{{end}}
</section>