-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
35 lines (31 loc) · 1.77 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
<!-- Functional -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Design -->
<link rel="stylesheet" href="{{ '/css/template.css' | absolute_url }}?version={{ site.version }}" />
<link rel="shortcut icon" href="{{ site.site_favicon | absolute_url }}?version={{ site.version }}" type="image/svg+xml" />
<script src="{{ '/js/template.js' | absolute_url }}?version={{ site.version }}"></script>
<meta name="theme-color" content="#e6e6e6" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#e6e6e6" media="(prefers-color-scheme: dark)" />
<!-- SEO -->
{% if page.url == '/' %}
<title>{{ site.site_title }}</title>
<meta property="og:title" content="{{ site.site_title }}">
<meta name="description" itemprop="description" content="{{ site.site_description }}">
<meta property="og:description" content="{{ site.site_description }}">
<meta name="keywords" content="{{ site.site_keywords }}">
{% else %}
<title>{{ page.title }}</title>
<meta property="og:title" content="{{ page.title }}">
<meta name="description" itemprop="description" content="{{ page.description }}">
<meta property="og:description" content="{{ page.description }}">
<meta name="keywords" content="{{ page.keywords }}">
{% endif %}
<meta name="language" content="{{ site.site_language_full }}">
<meta name="author" itemprop="creator" content="{{ site.author_fullname }}">
<meta name="robots" content="{{ page.robots }}">
<meta name="distribution" content="global">
<meta name="copyright" content="Copyright © {{ 'now' | date: '%Y' }} {{ site.author_fullname }}. All rights reserved.">
<!-- Alternatives -->
<link rel="alternate" type="application/rss+xml" title="Atom" href="{{ site.feed.path }}">