pi-www-theme-soho/layouts/_default/baseof.html

77 lines
2.1 KiB
HTML
Raw Normal View History

2020-02-10 20:38:11 +02:00
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-02-10 22:30:40 +02:00
{{ hugo.Generator }}
2020-02-10 20:38:11 +02:00
{{ if .IsHome -}}
<title>{{ .Site.Title }}</title>
{{- else -}}
<title>{{ .Title }} &middot; {{ .Site.Title }}</title>
{{- end }}
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
2020-02-10 22:30:40 +02:00
{{ partial "seo.html" . }}
<link type="text/css"
rel="stylesheet"
2020-06-15 21:00:52 +03:00
href="{{ `css/print.css` | relURL }}"
2020-02-10 22:30:40 +02:00
media="print">
<link type="text/css"
rel="stylesheet"
2020-06-15 21:00:52 +03:00
href="{{ `css/poole.css` | relURL }}">
2020-02-10 22:30:40 +02:00
<link type="text/css"
rel="stylesheet"
2020-06-15 21:00:52 +03:00
href="{{ `css/hyde.css` | relURL }}">
2020-02-10 20:38:11 +02:00
2022-04-11 21:54:25 +03:00
<link type="text/css"
href="{{ `css/rows.css` | relURL }}"
rel="stylesheet" >
2022-04-11 21:54:25 +03:00
2020-02-10 20:38:11 +02:00
{{ partial "theme-color.html" . }}
{{ range $.Site.Params.customCss -}}
2020-06-15 21:00:52 +03:00
<link type="text/css" rel="stylesheet" href="{{ . | relURL }}">
2020-02-10 20:38:11 +02:00
{{- end}}
2020-02-10 22:30:40 +02:00
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap">
2020-02-10 20:38:11 +02:00
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk="
crossorigin="anonymous" />
2020-02-10 22:30:40 +02:00
<link rel="apple-touch-icon-precomposed"
sizes="144x144"
href="/apple-touch-icon-144-precomposed.png">
2020-02-10 20:38:11 +02:00
<link rel="shortcut icon" href="/favicon.png">
<!-- RSS -->
{{ range .AlternativeOutputFormats -}}
{{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
{{ end -}}
</head>
<body>
2017-09-07 22:41:16 +03:00
{{ partial "sidebar.html" . }}
2020-02-10 20:38:11 +02:00
<main class="content container">
{{ block "main" . -}}{{- end }}
</main>
{{ partial "footer.html" . }}
{{ range $.Site.Params.customJs -}}
2020-06-15 21:00:52 +03:00
<script src="{{ . | relURL }}"></script>
2020-02-10 20:38:11 +02:00
{{- end}}
</body>
</html>