33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ if .Site.Params.favicon -}}
|
|
<link rel="icon" href="{{ .Site.BaseURL }}img/{{ .Site.Params.favicon }}">
|
|
{{- end }}
|
|
{{ $title := or (i18n .Title) .Title .Site.Title -}}
|
|
<title>{{ $title }}{{ if ne $title .Site.Title }} - {{ .Site.Title }}{{ end }}</title>
|
|
{{ hugo.Generator }}
|
|
{{ $main := resources.Get "sass/main.scss" | toCSS | minify -}}
|
|
<link rel="stylesheet" href="{{ $main.Permalink }}">
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
{{ block "config" . }}{{ end }}
|
|
</head>
|
|
<body>
|
|
{{ $header := or .Site.Params.layouts.partials.header "header" }}
|
|
{{ partial $header . }}
|
|
<div class="container">
|
|
<div class="wrapper">
|
|
{{ block "main" . }} {{ end }}
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
<script src="{{ .Site.BaseURL }}js/bootstrap.bundle.min.js"></script>
|
|
{{ partial "js.html" . }}
|
|
{{ block "appjs" . }} {{ end }}
|
|
</body>
|
|
</html>
|