generated from TryGhost/Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
73 lines (60 loc) · 2.24 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
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{asset "built/index.css"}}" />
<script src="{{asset "built/index.js"}}" defer></script>
<title>{{meta_title}}</title>
{{ghost_head}}
{{!-- Outputs important meta data and settings, should always be in <head> --}}
</head>
<body class="{{body_class}}">
<div class="gh-viewport">
<header id="gh-head" class="gh-head">
<nav class="gh-head-inner gh-container">
<div class="gh-head-brand">
<a class="gh-head-logo" href="{{@site.url}}">
{{#if @site.logo}}
<img src="{{@site.logo}}" alt="{{@site.title}}" />
{{else}}
{{@site.title}}
{{/if}}
</a>
<a class="gh-burger" role="button">
<div class="gh-burger-box">
<div class="gh-burger-inner"></div>
</div>
</a>
</div>
<div class="gh-head-menu">
{{navigation}}
</div>
{{!-- <div class="gh-head-actions">
<div class="gh-head-actions-list">
{{#if @site.members_enabled}}
<a class="gh-button" href="{{@site.signup_url}}">Sign up</a>
{{/if}}
</div>
</div> --}}
</nav>
</header>
<main class="gh-main">
{{{body}}}
{{!-- All content gets inserted here, index.hbs, post.hbs, etc --}}
</main>
<footer class="gh-foot">
<div class="gh-container">
<hr class="gh-separator"/>
<p>updated: 16 Dec 2023 · <a href="mailto:[email protected]">Email</a> · <a href="https://www.are.na/dorde-vlaisavljevic">Arena</a> · <a href="https://letterboxd.com/trojerucica/">Letterboxd</a> · <a href="https://read.cv/djordjevlais">cv</a></p>
{{!-- <div class="gh-foot-meta">
Published with <a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>
</div> --}}
</div>
</footer>
</div>
{{!-- <foot> --}}
{{ghost_foot}}
{{!-- Outputs important scripts - should always be included before closing body tag --}}
</body>
</html>