website/layouts/_default/single.html
Rafael Mardojai CM ee6df2ca4d
Initial commit
2023-12-17 08:45:10 -05:00

12 lines
No EOL
286 B
HTML

{{ define "main" }}
{{ $id := .Title | relURL | anchorize }}
<section class="section section-page {{ $id }}">
<div class="container">
<h2 class="title">{{ .Title }}</h2>
<div class="content">
{{ .Content }}
</div>
</div>
</section>
{{ end }}