-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
49 lines (42 loc) · 1.62 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
{%- assign bg_image = page.background_image | default: site.background.image | default: null %}
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML Meta Tags -->
{% seo %}
<link href="{{ '/assets/css/theme.css' | relative_url }}" rel="stylesheet" type="text/css">
<link href="{{ '/assets/css/style.css' | relative_url }}" rel="stylesheet" type="text/css">
<link rel="icon" type="image/x-icon" href="{{ '/assets/img/favicon.ico' | relative_url}}">
{%- if site.analytics.provider == 'google' %}
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics.property }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', '{{ site.analytics.property }}');
</script>
{%- endif %}
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="{{ '/assets/js/theme-toggle.js' | relative_url }}"></script>
<script src="{{ '/assets/js/anchor-links.js' | relative_url }}"></script>
<script src="{{ '/assets/js/timeline.js' | relative_url }}"></script>
{%- if bg_image %}
<style>
body {
position: relative;
background-image: url('{{ bg_image | relative_url }}');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
z-index: -10;
}
</style>
{%- endif %}
{%- if page.css_style %}
<style>
{{ page.css_style }}
</style>
{%- endif %}
</head>