forked from kgashok/makesite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
57 lines (47 loc) · 1.18 KB
/
page.html
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
<!DOCTYPE html>
<html>
<head>
<title>{{ title }} - {{ subtitle }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="{{ base_path }}/css/style.css">
</head>
<body id="{{ slug }}">
<nav>
<section>
<span class="home">
<a href="{{ base_path }}/">Home</a>
</span>
<span class="links">
<a href="{{ base_path }}/blog/">Blog</a>
<a href="{{ base_path }}/news/">News</a>
<a href="{{ base_path }}/contact/">Contact</a>
<a href="{{ base_path }}/about/">About</a>
</span>
</section>
</nav>
<main>
{{ content }}
<details>
<summary>Show comments</summary>
<script src="https://utteranc.es/client.js"
repo="kgashok/makesite"
issue-term="pathname"
label="comments"
theme="github-light"
crossorigin="anonymous"
async>
</script>
</details>
</main>
<footer>
<section>
<p>© {{ current_year }} Ashok Be</p>
<p>
<a href="https://twitter.com/lifebalance" target="_blank">Twitter</a>
<a href="https://github.com/kgisl/makesite" target="_blank">GitHub</a>
</p>
</section>
</footer>
</body>
</html>