-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
41 lines (32 loc) · 1.54 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
<head>
<script>
window.location.href = "https://rnli.org/find-my-nearest/events/2017/september/hackathon-water-water-everywhere";
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="icon" href="{{ "/favicon.png" | prepend: site.baseurl }}">
<!-- Meta information -->
<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 }}" />
<!-- hack.css -->
<link rel="stylesheet" href="https://npmcdn.com/hack/dist/hack.css" />
{% if site.theme_mode == 'standard' %}
<link rel="stylesheet" href="https://npmcdn.com/hack/dist/standard.css" />
{% elsif site.theme_mode == 'dark' %}
<link rel="stylesheet" href="https://npmcdn.com/hack/dist/dark.css" />
{% endif %}
<!-- Prism.js -->
<link rel="stylesheet" href="https://npmcdn.com/[email protected]/themes/prism.css" />
<!-- Custom style -->
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}" />
<!-- Feed -->
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}"
href="{{ "/feed.xml" | prepend: site.baseurl }}" />
<!-- 'jekyll-seo' plugin -->
{% seo %}
</head>