diff options
Diffstat (limited to 'layouts/_default')
| -rw-r--r-- | layouts/_default/baseof.html | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 658c98e..194b19a 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -2,10 +2,8 @@ <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"> - - {{ hugo.Generator }} - <meta name="viewport" content="width=device-width, initial-scale=1.0"> + {{ hugo.Generator }} {{ if .IsHome -}} <title>{{ .Site.Title }}</title> @@ -15,9 +13,20 @@ <meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" /> - <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print"> - <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css"> - <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css"> + {{ partial "seo.html" . }} + + <link type="text/css" + rel="stylesheet" + href="{{ .Site.BaseURL }}css/print.css" + media="print"> + + <link type="text/css" + rel="stylesheet" + href="{{ .Site.BaseURL }}css/poole.css"> + + <link type="text/css" + rel="stylesheet" + href="{{ .Site.BaseURL }}css/hyde.css"> {{ partial "theme-color.html" . }} @@ -25,14 +34,18 @@ <link type="text/css" rel="stylesheet" href="{{ $.Site.BaseURL }}{{ . }}"> {{- end}} - <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap" rel="stylesheet"> + <link rel="stylesheet" + href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png"> + <link rel="apple-touch-icon-precomposed" + sizes="144x144" + href="/apple-touch-icon-144-precomposed.png"> + <link rel="shortcut icon" href="/favicon.png"> <!-- RSS --> |
