32 lines
1.6 KiB
HTML
32 lines
1.6 KiB
HTML
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
{{ with .Site.Title }}<title>{{ . }}</title>{{ end }}
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ "css/bootstrap.min.css" | absURL }}">
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,300,700,400italic">
|
|
<link rel="stylesheet" href="{{ "css/font-awesome.min.css" | absURL }}">
|
|
<link rel="stylesheet" href="{{ "css/owl.carousel.css" | absURL }}">
|
|
<link rel="stylesheet" href="{{ "css/owl.theme.css" | absURL }}">
|
|
<!-- Theme stylesheet, if possible do not edit this stylesheet -->
|
|
{{ with .Site.Params.style }}
|
|
<link href="{{ printf "css/style.%s.css" . | absURL }}" rel="stylesheet" id="theme-stylesheet">
|
|
{{ else }}
|
|
<link href="{{ "css/style.default.css" | absURL }}" rel="stylesheet" id="theme-stylesheet">
|
|
{{ end }}
|
|
<!-- Responsivity for older IE -->
|
|
<!-- Just in case -->
|
|
{{ `
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
` | safeHTML }}
|
|
|
|
<!-- Custom stylesheet - for your changes -->
|
|
<link href="{{ "css/custom.css" | absURL }}" rel="stylesheet">
|
|
<link rel="shortcut icon" href="{{ "img/favicon.png" | absURL }}">
|
|
{{ with .OutputFormats.Get "RSS" }}
|
|
{{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
|
|
{{ end }}
|
|
{{ template "_internal/google_analytics_async.html" . }}
|