forked from Git/hugo-story
1
0
Fork 0

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

This commit is contained in:
Olivier 2023-07-02 00:07:18 +02:00
parent f8ebc403bf
commit 561e0cce61
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
<!-- Spotlight -->
<section class="spotlight {{ .style }}"{{ with .id }} id="{{ . }}"{{ end }}>
<div class="content">
{{ with .title }}<h2>{{ . }}</h2>{{ end }}
{{ with .content }}<p>{{ . | safeHTML }}</p>{{ end }}
{{ with .button }}<ul class="actions stacked">
<li><a href="{{ .link }}" class="button">{{ .label }}</a></li>
</ul>{{ end }}
</div>
{{ with .image }}<div class="image">
<img src="{{ . }}" alt="" />
</div>{{ end }}
</section>