-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
62 lines (48 loc) · 3.16 KB
/
head.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<head class="h-100">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="57x57" href="/public/img/icons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/public/img/icons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/public/img/icons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/public/img/icons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/public/img/icons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/public/img/icons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/public/img/icons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/public/img/icons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/public/img/icons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/public/img/icons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/public/img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/public/img/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/public/img/icons/favicon-16x16.png">
<link rel="manifest" href="/public/img/icons/manifest.json">
<meta name="msapplication-TileColor" content="#182848">
<meta name="msapplication-TileImage" content="/public/img/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#182848">
<!-- <title>{{page.title}}</title>-->
{% seo %}
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<!-- good for heading text-->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap"
rel="stylesheet">
<!-- good for body text-->
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<link href="{{ 'public/styles/main.css' | relative_url }}?v=2" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }} RSS Feed"
href="{{ 'feed.xml' | relative_url }}">
{% feed_meta %}
<!-- <meta name="description" content="{{site.description}}"/> -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-160182934-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-160182934-1');
</script>
</head>