début travail hugo

This commit is contained in:
nyanloutre 2020-07-05 11:23:13 +02:00
parent e1073ab21f
commit 80b7f7466d
22 changed files with 385 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{{ 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 }}