Files
sumup/themes/bootstrap5/layouts/_default/baseof.html

20 lines
482 B
HTML
Raw Normal View History

2025-11-09 19:57:15 +01:00
<!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>