patek.cz/themes/patek/layouts/_default/baseof.html
2019-07-15 21:58:32 +02:00

30 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ block "title" . }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
{{ $favicon := resources.Get "img/favicon.ico" }}
<link rel="icon" href="{{ $favicon.Permalink }}" type="image/ico">
{{ block "css" . -}}
<link rel="stylesheet" href="https://unpkg.com/firacode@1.206.0/distr/fira_code.css">
{{ partial "sass.html" "css/main.scss" }}
<meta name="theme-color" content="#0b2a37">
{{- end }}
{{ block "js" . -}}
{{ partial "js.html" "js/patek-logo-custom-element/patekLogo.js" }}
{{ end }}
<body>
{{ block "body" . }}
{{- partial "header.html" . -}}
<div id="content">
<div class="section">
<div class="container">
{{- block "main" . }}{{- end }}
</div>
</div>
</div>
{{- partial "footer.html" . -}}
{{ end }}
</body>
</html>