forked from jarrekk/Jalpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
executable file
·40 lines (36 loc) · 1.46 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
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1; minimum-scale=1; user-scalable=no;">
{% if page.desc %}
<meta content="{{ page.desc }}" name="description">
{% endif %}
{% if page.keywords %}
<meta name="keywords" content="{{ page.keywords }}">
{% endif %}
<meta name="author" content="{{ site.author.name }}">
<meta name="baseurl" content="{{ site.baseurl }}">
<title>
{% if page.title != "index" %}
{{ site.title }}|{{ page.title }}
{% else %}
{{ site.title }}
{% endif %}
</title>
<!-- favicon -->
<link rel="shortcut icon" href="{{ "/static/assets/img/favicon.ico" | prepend: site.baseurl }}">
<!-- Main CSS -->
<link href="{{ "/static/assets/app-20180125.min.css" | prepend: site.baseurl }}" rel="stylesheet">
<link href="{{ "/static/css/custom.css" | prepend: site.baseurl }}" rel="stylesheet">
<!-- Main Scripts -->
<script src="{{"/static/assets/app-20180125.min.js"| prepend: site.baseurl }}"></script>
<script src="{{"/static/assets/blog-20180125.min.js"| prepend: site.baseurl }}"></script>
<!-- Google AdSense -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-6196184668650108",
enable_page_level_ads: true
});
</script>
</head>