1
0
forked from Git/hugo-story

2023 Updates

This commit is contained in:
caressofsteel
2023-01-18 18:59:02 -05:00
parent d21ca45c47
commit 12cdfa2b45
170 changed files with 2601 additions and 104811 deletions

View File

@ -0,0 +1,14 @@
<!-- 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>