20 lines
482 B
HTML
20 lines
482 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
<div class="container-fluid p-5 bg-primary text-white text-center">
|
|
{{- partial "header.html" . -}}
|
|
</div>
|
|
{{- partial "nav.html" . -}}
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
{{- block "main" . }}{{- end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{- partial "footer.html" . -}}
|
|
|
|
</body>
|
|
</html>
|