head.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
  3. <head>
  4. <link href="//gmpg.org/xfn/11" rel="profile">
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  6. {{ hugo.Generator }}
  7. <!-- Enable responsiveness on mobile devices-->
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <!-- SEO schema as shown at https://keithpblog.org/post/hugo-website-seo/ -->
  10. {{ partial "seo_schema" . }}
  11. <!-- Original template continues here -->
  12. {{ if .IsHome -}}
  13. <title>{{ .Site.Title }}</title>
  14. {{- else -}}
  15. <title>{{ .Title }} &middot; {{ .Site.Title }}</title>
  16. {{- end }}
  17. <!-- CSS -->
  18. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print">
  19. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css">
  20. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/syntax.css">
  21. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css">
  22. {{ partial "head_fonts.html" . }}
  23. <!-- this is for font awesome, as indicated in https://www.w3schools.com/icons/fontawesome_icons_intro.asp -->
  24. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css">
  25. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/v4-shims.css">
  26. <!-- Icons -->
  27. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
  28. <link rel="shortcut icon" href="/favicon.png">
  29. <!-- RSS -->
  30. {{ range .AlternativeOutputFormats -}}
  31. {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
  32. {{ end -}}
  33. </head>