-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
49 lines (42 loc) · 1.2 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
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-JZ7VCSBD4M"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-JZ7VCSBD4M");
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ]
}
});
</script>
<script
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
type="text/javascript"
></script>
<!-- Code highlight -->
<link rel="stylesheet" href="/assets/css/syntax.css" />
<title>
{%- if page.title -%} {{ page.title }} {%- else -%} {{ site.title }} {%-
endif -%}
</title>
{%-seo title=false-%} {%-feed_meta-%}
<link
rel="shortcut icon"
type="image/x-icon"
href="{{ site.favicon | relative_url }}"
/>
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" />
</head>