-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathdefault.html
More file actions
executable file
·98 lines (77 loc) · 5.06 KB
/
default.html
File metadata and controls
executable file
·98 lines (77 loc) · 5.06 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{% comment %}Getting the locale from the url{% endcomment %}{% capture locale %}{{ page.url | truncate: 3, "" | remove: "/" }}{% endcapture %}{% unless site.authorized_locales contains locale %}{% assign locale = site.default_locale %}{% endunless %}
<!DOCTYPE html>
<!--[if lt IE 10]> <html class="lt-ie10 no-js" lang="{{locale}}"> <![endif]-->
<!--[if gt IE 9]><!--> <html class="no-js" lang="{{locale}}"> <!--<![endif]-->
<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="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 }}">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/styles/main.css">
<link rel="author" type="text/plain" href="humans.txt" />
<!-- Self-hosted fonts for GDPR compliance -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"
integrity="sha512-3n19xznO0ubPpSwYCRRBgHh63DrV+bdZfHK52b1esvId4GsfwStQNPJFjeQos2h3JwCmZl0/LgLxSKMAI55hgw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="apple-touch-icon" sizes="57x57" href="/assets/graphics/favicon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="57x57" href="/assets/graphics/favicon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/graphics/favicon/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/graphics/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/graphics/favicon/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/assets/graphics/favicon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/graphics/favicon/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/assets/graphics/favicon/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/graphics/favicon/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/graphics/favicon/apple-touch-icon-180x180.png">
<link rel="shortcut icon" href="/assets/graphics/favicon/favicon.ico">
<link rel="icon" type="image/png" href="/assets/graphics/favicon/favicon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/assets/graphics/favicon/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="/assets/graphics/favicon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/assets/graphics/favicon/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/assets/graphics/favicon/favicon-32x32.png" sizes="32x32">
<meta name="description" content="Putting the World's Vulnerable People on the Map">
<meta itemprop="name" content="MissingMaps">
<meta itemprop="description" content="Putting the World's Vulnerable People on the Map" >
<meta itemprop="image" content="http://i.imgur.com/sSUhfmc.png" >
<meta name="twitter:card" content="product" >
<meta name="twitter:site" content="@themissingmaps" >
<meta name="twitter:title" content="MissingMaps" >
<meta name="twitter:description" content="Putting the World's Vulnerable People on the Map" >
<meta name="twitter:creator" content="@themissingmaps" >
<meta name="twitter:image" content="http://i.imgur.com/sSUhfmc.png" >
{% feed_meta %}
</head>
<body>
<!--[if lt IE 11]>
<div id="nocando">
<h1>No can do!</h1>
<p>You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
</div>
<![endif]-->
{{ content }}
{% include footer.html %}
<!-- GDPR-Compliant Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-55969124-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// Initialize in a disabled state - will be enabled by consent manager
gtag('config', 'UA-55969124-1', {
'anonymize_ip': true,
'cookie_flags': 'SameSite=Strict;Secure',
'send_page_view': false
});
// Disable by default until user consents
window['ga-disable-UA-55969124-1'] = true;
</script>
<!-- GDPR Cookie Consent Banner -->
{% include cookie-consent.html %}
<!-- build:js assets/scripts/main.js -->
<script src="{{ site.baseurl }}/assets/scripts/main.min.js"></script>
<!-- endbuild -->
</body>
</html>