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