-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdefault.hbs
More file actions
86 lines (70 loc) · 2.88 KB
/
default.hbs
File metadata and controls
86 lines (70 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{meta_title}}</title>
<meta name="viewport" content="width=device-width initial-scale=1">
<meta name="description" content="{{ meta_description }}">
<meta name="flattr:id" content="12dxv3">
<link rel="icon" href="/favicon.ico">
<!-- * **********************
*
* TODO
* : add .versionedAsset class to stylesheet
*
*********************** -->
<link rel="stylesheet" type="text/css" href="{{asset "built/global.css"}}">
<link rel="manifest" href="{{asset "manifest.json"}}">
<meta name="theme-color" content="#ffdb3a">
<link rel="icon" type="image/png" sizes="32x32" href="{{asset "icons/icon_32.png"}}">
<link rel="icon" type="image/png" sizes="48x48" href="{{asset "icons/icon_48.png"}}">
<link rel="icon" type="image/png" sizes="128x128" href="{{asset "icons/icon_128.png"}}">
<link rel="icon" type="image/png" sizes="256x256" href="{{asset "icons/icon_256.png"}}">
<meta name="apple-mobile-web-app-title" content="bitsofcode">
<link rel="apple-touch-icon" sizes="152x152" href="{{asset "icons/icon_152.png"}}">
<meta name="msapplication-TileColor" content="#ffdb3a">
<meta name="msapplication-TileImage" content="{{asset "icons/icon_144.png"}}">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:image" content="{{asset "icons/icon_128.png"}}">
<meta property="og:site_name" content="bitsofcode">
<meta property="og:url" content="https://bitsofco.de">
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header class="site__header">
<div class="wrapper wrapper--flex">
<a href="#site__footer__nav" class="anchorButton no-btn site__nav__open">
<span class="sr-only">Open Site Navigation</span>
{{> icon-menu}}
</a>
<h1 class="site__title">
<a href="/" class="no-ul">
<span class="sr-only">bitsofcode</span>
{{> bitsofcode-logo }}
</a>
</h1>
<a href="/search" class="site__search__open">
<span class="sr-only">Open Site Search</span>
{{> icon-search}}
</a>
</div>
</header>
{{> site-nav}}
<div class="site__body">
<div class="wrapper wrapper--flex">
<main class="site__main">{{{body}}}</main>
{{> site-sidebar}}
</div>
</div>
<footer class="site__footer p-t-md p-b-md">
<div class="wrapper">
<p class="fs-i m-b-sm">All articles written with ❤ by <a href="https://www.ireaderinokun.com/">Ire Aderinokun</a></p>
<nav id="site__footer__nav" class="site__footer__nav m-b-sm no-ul">{{navigation}}</nav>
</div>
</footer>
<div class="dialog-overlay" aria-hidden="true"></div>
<script src="{{asset "built/global.js"}}"></script>
{{ghost_foot}}
</body>
</html>