lestoitsduval/layouts/partials/projet.html

17 lines
533 B
HTML

<div class="cell -6of12">
<a href="{{ .Permalink }}" class="grid -middle">
<div class="info grid -middle -center">
<div>
<h3 class="cell -middle">{{ .Title }}</h3>
<time>{{ .Date.Year }}</time>
</div>
</div>
</a>
{{ $path := .Params.image }}
{{ $credit := .Params.image_credit }}
{{ with .Resources.GetMatch $path }}
{{ $img := .Fill "460x260 center" }}
<div class="image"><img src="{{ $img.RelPermalink }}"{{ with $credit }} alt="{{ $credit }}"{{ end }} /></div>
{{ end }}
</div>