blob: 59aa2cec4792084f0e702be6a8591879b037cb8c (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>{{ title }}</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 }}/community/">Community</a>
<a href="{{ base_path }}/development/">Development</a>
</span>
</section>
</nav>
<main>
{{ content }}
</main>
<footer>
<section>
<p>© {{ current_year }} Sideros project</p>
<p>
<a href="https://git.sideros.org/">Project Git</a>
<a href="https://git.sideros.org/website">Source code</a>
</p>
</section>
</footer>
</body>
</html>
|