Fork of @spf13's port of Mdo's excellent theme to Hugo https://brendan.abolivier.bzh/

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
  3. <head>
  4. <link href="https://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. {{ if .IsHome -}}
  10. <title>{{ .Site.Title }}</title>
  11. {{- else -}}
  12. <title>{{ .Title }} &middot; {{ .Site.Title }}</title>
  13. {{- end }}
  14. <meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
  15. <!-- CSS -->
  16. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print">
  17. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css">
  18. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/syntax.css">
  19. <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css">
  20. {{ partial "head_fonts.html" . }}
  21. <!-- Icons -->
  22. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
  23. <link rel="shortcut icon" href="/favicon.png">
  24. <!-- RSS etc -->
  25. {{ range .AlternativeOutputFormats -}}
  26. {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
  27. {{ end -}}
  28. {{ partial "hook_head_end.html" . }}
  29. </head>