-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecalDefault.hbs
40 lines (36 loc) · 1.08 KB
/
decalDefault.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
<!DOCTYPE html>
<html lang="{{@site.lang}}">
<head>
<title>{{meta_title}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="{{asset 'css/all.css'}}">
{{ghost_head}}
<style>
/* This font-face is here to make icons work if the Ghost instance is installed in a subdirectory */
@font-face {
font-family: 'icomoon';
src: url("{{asset 'fonts/icomoon.eot'}}");
src: url("{{asset 'fonts/icomoon.eot'}}") format('embedded-opentype'),
url("{{asset 'fonts/icomoon.ttf'}}") format('truetype'),
url("{{asset 'fonts/icomoon.woff'}}") format('woff'),
url("{{asset 'fonts/icomoon.svg'}}") format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: Formata;
src: url("{{asset 'fonts/formata.otf'}}");
}
</style>
</head>
<body>
{{> header}}
{{{body}}}
{{> footer}}
<script src="https://kit.fontawesome.com/46c1b442c4.js" crossorigin="anonymous"></script>
<script src="{{asset 'js/all.js'}}"></script>
{{ghost_foot}}
</body>
</html>