This repository has been archived by the owner on Nov 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
default.hbs
48 lines (39 loc) · 1.46 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
<!doctype html>
<head>
{{! document settings }}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{! page meta}}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}">
{{! feed, styles, etc. }}
<link rel="stylesheet" href="{{asset 'css/styles.css'}}" type="text/css">
<link rel="alternate" title="RSS" href="{{@blog.url}}/rss/" type="application/rss+xml">
{{! ghost stuff - dont' remove this }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header class="main-header">
<div class="page-wrapper">
<h1><a href="{{@blog.url}}">{{@blog.title}}</a></h1>
<p>{{@blog.description}}</p>
</div><!-- page wrapper -->
</header>
<nav class="main-menu">{{navigation}}</nav>
<main>
<div class="page-wrapper">
{{{body}}}
</div><!-- page wrapper -->
</main>
<footer class="main-footer">
<div class="page-wrapper">
<p><a href="{{@blog.url}}/rss/">Subscribe to RSS</a> updates.</p>
<p>© {{date format="YYYY"}} {{@blog.title}}. All rights reserved.<br>
Powered with <a href="https://www.ghost.org">Ghost</a> and the
<a href="https://www.github.com/belen-albeza/komik-theme">Komik</a> theme.
</p>
</div><!-- page wrapper -->
</footer>
{{! ghost stuff - don't remove this! }}
{{ghost_foot}}
</body>