forked from nauzethc/ghost-material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
102 lines (88 loc) · 2.87 KB
/
default.hbs
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
99
100
101
102
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="utf-8" />
{{! Responsive Meta Tags }}
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="theme-color" content="#26a69a">
{{! CDN resources }}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css" />
<link rel="stylesheet" href="//cdn.materialdesignicons.com/1.3.41/css/materialdesignicons.min.css" />
{{! Styles }}
<link rel="stylesheet" href="{{asset "assets/css/screen.css"}}" />
<link rel="stylesheet" href="{{asset "assets/css/animations.css"}}" />
<link rel="stylesheet" href="{{asset "assets/css/theme.css"}}" />
{{! Ghost header injection }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{! Content }}
{{{ body }}}
{{! Footer }}
<footer class="footer">
{{! Top part }}
<div class="footer--top">
<div class="footer--content container">
<div class="half">
<p><a href="{{@blog.url}}">{{@blog.title}}</a><br />
{{@blog.description}}</p>
</div>
<div class="half">
<ul class="footer--suscriptions">
<li>
<a href="#!">
<i class="mdi mdi-twitter-box"></i>
</a>
</li>
<li>
<a href="#!">
<i class="mdi mdi-google-plus-box"></i>
</a>
</li>
<li>
<a href="#!">
<i class="mdi mdi-github-box"></i>
</a>
</li>
<li>
<a href="{{@blog.url}}/rss/">
<i class="mdi mdi-rss-box"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
{{! Bottom part }}
<div class="footer--bottom">
<div class="footer--content container">
<div class="half">
<p><i class="mdi mdi-information-outline"></i>
<a href="http://creativecommons.org/licenses/by-sa/4.0/">
Creative Commons BY-SA 4.0
</a> - {{date format="YYYY"}}
</p>
</div>
<div class="half">
<p>
<i class="mdi mdi-code-tags"></i>
<a href="http://ghost.org">Ghost</a>
<a href="https://github.com/nauzethc/ghost-material">Material</a>
<i class="mdi mdi-xml"></i>
</p>
</div>
</div>
</div>
</footer>
{{! Scripts }}
<script src="{{asset "assets/js/main.js"}}"></script>
{{! Ghost body injection }}
{{ghost_foot}}
</body>
</html>