-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.html
62 lines (59 loc) · 1.68 KB
/
shell.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
<!DOCTYPE html>
<html
class="no-js"
{% if site.data.config.lang %}lang="{{ site.data.config.lang }}"{% endif %}>
<head>
<meta
charset="UTF-8"/>
<meta
name="Description"
CONTENT="{{ page.description }}">
<title>{{ page.title }} — {{ site.title }}</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
media="screen"
type="text/css"
href="{{ site.style_url | default: '/assets/style/all.css' }}"/>
<meta
content="{{ page.summary }}"
name="description">
<meta
content="{{ page.summary }}"
name="keywords">
<meta
content="{% if page.title %}{{ page.title }} — {% endif %}{{ site.title }}"
property="og:title">
{% if page.summary %}
<meta
property="og:description"
content="{{ page.summary }}"/>
{% elsif page.description %}
<meta
property="og:description"
content="{{ page.description }}"/>
{% endif %}
{% if page.image %}
<meta
content="{{ page.image }}"
property="og:image">
{% elsif page.hero %}
<meta
content="{{ page.hero }}"
property="og:image">
{% else %}
<meta
content="{{ site.touch_icon }}"
property="og:image">
{% endif %}
<script
src="{{ site.bundle_url | default: '/assets/script/patterns/bundle.min.js' }}"
type="text/javascript"></script>
</head>
<body
class="{{ page.class }} {{ layout.class }} layout-{{ page.layout | slugify }}">
{{ content }}
</body>
</html>