23 lines
516 B
HTML
23 lines
516 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
{{- block "head" . -}}{{- end }}
|
|
|
|
<!-- stylesheets -->
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css" media="all">
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Peddana&display=swap" rel="stylesheet" media="all">
|
|
</head>
|
|
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
{{- block "main" . -}}{{- end }}
|
|
{{- partial "footer.html" . -}}
|
|
{{- partial "scripts.html" . -}}
|
|
|
|
</body>
|
|
|
|
</html> |