dot-hugo/layouts/elements/list.html
2019-01-06 16:40:05 +06:00

21 lines
No EOL
453 B
HTML

{{ partial "head.html" . }}
{{ "<!-- navigation -->" | safeHTML }}
<header class="shadow-bottom position-relative">
<div class="container">
{{ partial "navigation.html" . }}
</div>
</header>
{{ "<!-- /navigation -->" | safeHTML }}
<section class="elements pt-5 bg-gray">
<div class="container">
<div class="row">
<div class="col-12">
{{ .Content }}
</div>
</div>
</div>
</section>
{{ partial "footer.html" . }}