hugo-theme-introduction/layouts/partials/header.html

81 lines
2.4 KiB
HTML
Raw Normal View History

2017-03-13 09:14:02 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer">
{{ if .Site.Params.description }}<meta name="description" content="{{ .Site.Params.description }}">{{ end }}
<base href="{{ .Site.BaseURL }}">
<title>
{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
{{ if eq $url "/" }}
{{ .Site.Title }}
{{ else }}
{{ if .Params.heading }} {{ .Params.heading }} {{ else }} {{ .Title }} {{ end }}
{{ end }}
</title>
<link rel="canonical" href="{{ .Permalink }}">
<!-- HTTPS -->
2017-07-25 00:37:04 +00:00
{{ if .Site.Params.enforce_ssl }}
2017-03-13 09:14:02 +00:00
<script type="text/javascript">
var baseURL = '{{ .Site.BaseURL }}';
var host = baseURL.substring(0, baseURL.length - 1).replace(/\//g, '');
if ((host === window.location.host) && (window.location.protocol !== 'https:')) {
window.location.protocol = 'https:';
}
</script>
{{ end }}
<!-- jQuery -->
2017-11-13 21:01:53 +00:00
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
2017-03-13 09:14:02 +00:00
<!-- Fonts and icon CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
2017-11-13 21:01:53 +00:00
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito+Sans">
2017-03-13 09:14:02 +00:00
2018-01-27 01:10:03 +00:00
{{ if .Site.Params.cacheBuster }}
2017-03-13 09:14:02 +00:00
2017-04-21 05:31:55 +00:00
{{ $t := now.Unix }}
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle | default "dark" }}-style.css?t={{$t}}">
2018-01-27 03:56:33 +00:00
{{range .Site.Params.extraCSSFiles}}
2017-03-13 09:14:02 +00:00
<link rel="stylesheet" href="{{.}}?t={{$t}}">
{{ end }}
{{ else }}
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle | default "dark" }}-style.css">
2018-01-27 03:56:33 +00:00
{{range .Site.Params.extraCSSFiles}}
2017-03-13 09:14:02 +00:00
<link rel="stylesheet" href="{{.}}">
{{end}}
{{ end }}
<!-- Icon -->
<link rel="shortcut icon"
2018-01-27 01:10:03 +00:00
{{ if .Site.Params.faviconFile }}
href="{{ .Site.Params.faviconFile }}"
2017-03-13 09:14:02 +00:00
{{ else }}
2018-01-26 19:15:43 +00:00
href="img/favicon.ico"
2017-03-13 09:14:02 +00:00
{{ end }}
>
<!-- Google Analytics -->
{{ template "_internal/google_analytics_async.html" . }}
<!-- RSS -->
{{ if .RSSLink }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
{{ end }}
</head>