anna-uetwiller-architecture/themes/anna/layouts/portfolio/single.html

16 lines
337 B
HTML
Raw Normal View History

2020-07-05 11:23:13 +02:00
{{ define "main" }}
<section class="section">
<article>
<h1 class="title is-1">{{ .Title }}</h1>
<div class="content">
{{ with .Params.images }}
<figure class="title-image">
<img src="{{ index . 0 }}" alt="">
</figure>
{{ end }}
{{ .Content }}
</div>
</article>
</section>
{{ end }}