Files
hugo_bootstrap_theme/layouts/page.html
T
2026-06-16 16:45:32 +02:00

13 lines
307 B
HTML

{{ define "main" }}
<article class="container py-5">
<div class="row justify-content-center">
<div class="col">
<h1 class="display-5 fw-bold mb-4">{{ .Title }}</h1>
<div class="content-body">
{{ .Content }}
</div>
</div>
</div>
</article>
{{ end }}