head.html 1.2 KB

1234567891011121314151617181920212223
  1. <head>
  2. <title>{{ .Site.Title }}</title>
  3. <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
  4. <meta content="utf-8" http-equiv="encoding">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="format-detection" content="telephone=no" />
  7. <meta name="theme-color" content="#000084" />
  8. <link rel="icon" href="{{ .Site.BaseURL }}/favicon.ico">
  9. <link rel="canonical" href="{{ .Site.BaseURL }}">
  10. <link rel="stylesheet" href="{{ "/css/bootstrap.min.css" | relURL }}">
  11. <link rel="stylesheet" href="{{ "/css/bootstrap-theme.min.css" | relURL }}">
  12. <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}">
  13. {{ range .Site.Params.customCSS -}}
  14. <link rel="stylesheet" href="{{ . | relURL }}?{{ slicestr (. | relURL | md5) 0 10 }}">
  15. {{- end }}
  16. {{/* Don't ask why it's like this. This original theme is a mess... */}}
  17. <!-- <noscript><style>body { visibility: visible }</style></noscript> -->
  18. {{ range .AlternativeOutputFormats -}}
  19. {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
  20. {{ end -}}
  21. </head>