16 lines
337 B
HTML
16 lines
337 B
HTML
{{ 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 }}
|