2020-07-05 11:23:13 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
<section class="section">
|
|
|
|
<article>
|
2020-08-15 19:00:29 +02:00
|
|
|
<div class="content portfolio">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<ul>
|
|
|
|
{{ range .Params.images }}
|
|
|
|
{{ $img := $.Page.Resources.GetMatch . }}
|
|
|
|
<li>
|
|
|
|
<figure>
|
|
|
|
<img src="{{ $img.RelPermalink }}" alt="">
|
|
|
|
</figure>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2020-07-05 11:23:13 +02:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|