anneso/layouts/partials/projects.html

20 lines
612 B
HTML

<ul class="projets" id="projets">
{{
$pages := cond (or .IsHome .IsPage)
(.Site.GetPage "/portfolio").Pages.Reverse
.Data.Pages.Reverse
}}
{{ range $pages }}
<li class="item">
{{ $image := .Resources.GetMatch (default "*" .Params.image) }}
{{ if $image }}
{{ $resized := $image.Fill "280x280 Center"}}
<img src="{{ $resized.RelPermalink }}">
{{ end }}
<a href="{{.RelPermalink}}" class="description">
<h2>{{ .Title }}</h2>
<p>{{ .Description }}</p>
</a>
</li>
{{ end }}
</ul>