-
Notifications
You must be signed in to change notification settings - Fork 303
/
page.html
42 lines (37 loc) · 935 Bytes
/
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
<!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 }}
</main>
<footer>
<section>
<p>© {{ current_year }} Lorem Ipsum</p>
<p>
<a href="https://twitter.com/sunainapai">Twitter</a>
<a href="https://github.com/sunainapai">GitHub</a>
<a href="https://www.example.com/">Example</a>
</p>
</section>
</footer>
</body>
</html>