forked from TestingConferences/testingconferences.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
51 lines (42 loc) · 1.99 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
<head>
<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 }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description"
content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="/css/font-awesome/css/font-awesome.min.css">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend:
site.baseurl | prepend: site.url }}" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K5QH3GQ2MF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-K5QH3GQ2MF');
</script>
{% seo %}
<!-- Console Message-->
<script>
const message =
`Welcome to Testing Conferences!
Does this page need fixes or is our content out of date? Everyone is encourged to contribute!
🤝 Contribute to Testing Conferences: https://testingconferences.org/how-to-contribute/
🔎 Create a new Github issue: https://github.com/TestingConferences/testingconferences.github.io/issues/new
🚀 We like your curiosity! Help us improve or sign up for our newsletter to learn more: https://testingconferences.org/subscribe/
`;
console.log(message);
</script>
<!-- Banner Tracking -->
<script>
document.getElementById('#promo').addEventListener('click', function () {
gtag('event', 'BannerLinkClick', {
'event_category': 'Banner Clicks',
'event_label': 'Link Click'
});
});
</script>
</head>