mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 04:02:38 +00:00
15 lines
783 B
HTML
15 lines
783 B
HTML
{{$kind := .Kind}}
|
|
<div class="all-contents">
|
|
{{range .Data.Pages}}
|
|
<!-- if statement checks for sitelink. sitelink: is a field in front matter of /content/showcase/*.md) -->
|
|
<a {{with .Params.sitelink }}href="{{.}} "target="_blank"{{else}}href="{{.Permalink}}"{{end}}>
|
|
<section class="contents-list {{$kind}}">
|
|
<header>
|
|
<!-- <h3 class="list-icon {{.Section}}">{{- partial "list-icon.html" . -}}{{.Title | markdownify}}{{with .Params.sitelink }} <i class="fa fa-external-link" aria-hidden="true"></i>{{end}}</h3> -->
|
|
<h3 class="list-icon {{.Section}}">{{.Title | markdownify}}{{with .Params.sitelink }} <i class="fa fa-external-link" aria-hidden="true"></i>{{end}}</h3>
|
|
</header>
|
|
<p>{{.Description | markdownify }}</p>
|
|
</section>
|
|
</a>
|
|
{{end}}
|
|
</div> |