blob: 48e5fc4cd0f176584af526ef3626697dcb8987ca (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% if page.title%}
<title>{{ page.title }}</title>
{% else %}
<title> Luhamus </title>
{% endif %}
<link href="css/style.css" rel="stylesheet"/>
<link rel="icon" href="/img/favicon.ico">
</head>
<body>
<div class="headerImage">
<div class="imgContainer">
<h1><span>Luhamus</span></h1>
</div>
</div>
<nav>
<a href="/">Home</a>
<a href="about">About</a>
<a href="https://git.luhamus.com">Git</a>
<a href="contact">Contact</a>
</nav>
<hr/>
<section class="main">
{% block content %} {% endblock %}
</section>
<hr/>
<footer>© <i>footer 2022</i></footer>
</body>
</html>
|