summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..9b997b6
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="utf-8">
+ {% if page.title%}
+ <title>{{ page.title }}</title>
+ {% else %}
+ <title> Luhamus </title>
+ {% endif %}
+ <link href="css/style.css" rel="stylesheet"/>
+</head>
+
+<body>
+ <div class="main-image">
+ <div class="img-container">
+ <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="section">
+ <div class="container">
+ {% block content %} {% endblock %}
+ </div>
+ </section>
+ <hr/>
+ <footer>&copy Here is the very important Footer 2022</footer>
+</body>
+
+</html>