aboutsummaryrefslogtreecommitdiff
path: root/src/templates/partials
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/partials')
-rw-r--r--src/templates/partials/footer.html7
-rw-r--r--src/templates/partials/master.html9
-rw-r--r--src/templates/partials/nav.html16
3 files changed, 16 insertions, 16 deletions
diff --git a/src/templates/partials/footer.html b/src/templates/partials/footer.html
index 6ae4459..555e0d1 100644
--- a/src/templates/partials/footer.html
+++ b/src/templates/partials/footer.html
@@ -1,5 +1,6 @@
<footer>
- <p>
- &copy; 2021 | Julien (Adyxax) Dessaux | <a href="https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12" title="EUPL 1.2">Some rights reserved</a>
- </p>
+ <hr>
+ <p>
+ <center><small>&copy; 2021 | <a href="https://www.adyxax.org/docs/about-me/">Julien (Adyxax) Dessaux</a> | <a href="https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12" title="EUPL 1.2">Some rights reserved</a></small></center>
+ </p>
</footer>
diff --git a/src/templates/partials/master.html b/src/templates/partials/master.html
index 78e3211..cebdd61 100644
--- a/src/templates/partials/master.html
+++ b/src/templates/partials/master.html
@@ -1,16 +1,19 @@
<!doctype html>
<html class="no-js" lang="en">
<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/static/favicon.ico">
<link rel="stylesheet" href="{{ $cssRoute }}">
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<title>short.adyxax.org</title>
</head>
<body>
- {% importnwt "templates/partials/nav.html" %}
+ <header>
+ {% importnwt "templates/partials/nav.html" %}
+ </header>
<main id="main">
+ <hr>
{% block content %}{% endblock %}
</main>
{% importnwt "templates/partials/footer.html" %}
diff --git a/src/templates/partials/nav.html b/src/templates/partials/nav.html
index 8882ff0..a4132e0 100644
--- a/src/templates/partials/nav.html
+++ b/src/templates/partials/nav.html
@@ -1,10 +1,6 @@
-<header>
- <nav>
- <ul>
- <li class="nav-menu-title"><a href="/">short.adyxax.org</a></li>
- <li class="nav-menu-margin-left">
- <a href="/about">About</a>
- </li>
- </ul>
- </nav>
-</header>
+<nav>
+ <a href="/">short.adyxax.org</a>
+ <ul>
+ <li><a href="/about">About</a></li>
+ </ul>
+</nav>