summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: c3864e32bda5759832c70ffe4ec69b982e107d3a (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
<!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"/>
</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="">Git</a>
	<a href="contact">Contact</a>
  </nav>
  <hr/>

  <section class="main">
      {% block content %} {% endblock %}
  </section>

  <hr/>
  <footer>&copy Here is the very important Footer 2022</footer>

</body>
</html>