forked from ourdarkfuture/kakotopia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.hbs
More file actions
66 lines (46 loc) · 1.78 KB
/
default.hbs
File metadata and controls
66 lines (46 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META
------------------------- -->
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<!-- Mobile Specific Metas
------------------------- -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
------------------------- -->
<!-- CSS
------------------------- -->
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/normalize.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/skeleton.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/custom.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/font-awesome.min.css"}}" />
<!-- JS
------------------------- -->
<!-- FAVICON
------------------------- -->
<link rel="shortcut icon" href="{{asset "/images/favicon.ico"}}">
{{ghost_head}}
</head>
<!-- BODY
------------------------- -->
<body class="{{body_class}} nav-closed">
<div class="container">
{{{body}}}
<div class="container">
<footer id="footer" class="twelve columns">
<br />
<br />
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> <span style="font-size: .8em; font-weight: 600;"><a href="https://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY-NC-SA</a></span> {{date format="YYYY"}}</section>
<a href="https://twitter.com/ourdarkfuture"><i class="fa fa-twitter" aria-hidden="true"></i></a> <a href="{{@blog.url}}/rss"><i class="fa fa-rss" aria-hidden="true"></i></a>
<br />
<br />
</footer>
</div> <!-- end footer div.container -->
</div> <!-- end footer div.table-block -->
{{ghost_foot}}
</body>
</html>