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

head.html 1.2KB

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
  3. <head>
  4. <link href="http://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, maximum-scale=1">
  9. {{ if .IsHome -}}
  10. <title>{{ .Site.Title }}</title>
  11. {{- else -}}
  12. <title>{{ .Title }} &middot; {{ .Site.Title }}</title>
  13. {{- end }}
  14. <!-- CSS -->
  15. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print">
  16. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css">
  17. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/syntax.css">
  18. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css">
  19. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
  20. <!-- Icons -->
  21. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
  22. <link rel="shortcut icon" href="/favicon.png">
  23. <!-- RSS -->
  24. <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
  25. </head>