21 lines
613 B
HTML
21 lines
613 B
HTML
{{ with .Site.GetPage "/spotlights" }}
|
|
{{ range .Pages }}
|
|
<section class="spotlight {{ .Params.style }}" id="{{ .Params.id }}">
|
|
<div class="content">
|
|
<h2>{{ .Title }}</h2>
|
|
<p>{{ .Content }}</p>
|
|
{{ with .Params.button }}
|
|
<ul class="actions stacked">
|
|
<li><a href="#{{ .link }}" class="button smooth-scroll-middle">{{ .label }}</a></li>
|
|
</ul>
|
|
{{ end }}
|
|
</div>
|
|
{{ range .Resources.ByType "image" }}
|
|
<div class="image">
|
|
<img src="{{ .RelPermalink }}" alt="" />
|
|
</div>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
{{ end }}
|