Website/layouts/_default/single.html
Martin Gasque 0ba3f3c7c5 Initial commit
Will it deploy one day ?
2024-02-20 08:59:37 +01:00

13 lines
307 B
HTML

{{ define "main" }}
<div class="container">
<section class="page-header--c">
<h1 class="page-header-title">{{ .Title }}</h1>
</section>
</div>
<section class="generic-single">
<div class="single-container markdown">
{{ .Content }}
<!-- Edit current page -->
</div>
</section>
{{ end }}