-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhead.html
83 lines (66 loc) · 3.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{% if page.title %}{{ page.title }} | {% endif %}PHPFlasher</title>
<meta property="og:title" content="{{ site.data.project.title }}">
<meta property="og:type" content="website">
<meta property="og:url" content="https://php-flasher.io">
<meta property="og:image" content="https://php-flasher.io/dist/images/php-flasher-social-card.jpg">
<meta property="og:image:alt" content="{{ site.data.project.title }}" />
<meta property="og:image:width" content="1024">
<meta property="og:image:height" content="512">
<meta property="og:description" content="{{ site.data.project.description }}">
<meta property="og:site_name" content="PHPFlasher">
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@yoeunes">
<meta name="twitter:site" content="@phpflasher" />
<meta name="twitter:image:src" content="https://php-flasher.io/dist/images/php-flasher-social-card.jpg" />
<meta name="twitter:image:alt" content="{{ site.data.project.description }}" />
<meta name="twitter:title" content="{{ site.data.project.title }}">
<meta name="twitter:description" content="{{ site.data.project.description }}">
<meta name="publish_date" property="og:publish_date" content="2023-01-10">
<meta name="author" content="Younes KHOUBZA">
<meta name="description" content="{{ page.description }}" />
<link rel="icon" type="image/png" href="/dist/images/favicon.ico"/>
<link rel="apple-touch-icon" sizes="180x180" href="/dist/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/dist/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/dist/images/favicon-16x16.png">
<link rel="mask-icon" href="/dist/images/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#4052B5">
<link href="https://fonts.googleapis.com/css?family=Raleway|Varela+Round" rel="stylesheet"/>
{% for link in site.data.entrypoints['entrypoints'][page.layout]['css'] %}
<link href="{{ link }}" rel="stylesheet"/>
{% endfor %}
{% for link in site.data.entrypoints['entrypoints'][page.layout]['js'] %}
<script defer src="{{ link }}"></script>
{% endfor %}
{% unless site.data.dev.dev_mode %}
{% if site.data.flasher contains page.url %}
{% assign adapter = site.data.flasher[page.url] %}
{% for link in site.data.entrypoints['entrypoints'][adapter]['css'] %}
<link href="{{ link }}" rel="stylesheet"/>
{% endfor %}
{% for link in site.data.entrypoints['entrypoints'][adapter]['js'] %}
{% unless link contains '/dist/runtime.' %}
<script defer src="{{ link }}"></script>
{% endunless %}
{% endfor %}
{% endif %}
<script src="https://cdn.counter.dev/script.js" data-id="3772fc72-0949-47c9-b4e3-6e1da76a2095" data-utcoffset="1"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T4D78SM7TC"></script>
<script defer>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-T4D78SM7TC');
</script>
{% endunless %}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/themes/prism.min.css">
<script defer src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/prism.min.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/plugins/autoloader/prism-autoloader.min.js"></script>
<script>
var messages = {};
</script>