summaryrefslogtreecommitdiff
path: root/layouts/partials
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/footer.html14
-rw-r--r--layouts/partials/head.html15
-rw-r--r--layouts/partials/header.html34
-rw-r--r--layouts/partials/navigation.html18
4 files changed, 33 insertions, 48 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 83be5c4..641b3b9 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,11 +1,3 @@
-<footer style="vertical-align: bottom;">
- <div style="display: block; margin-left:20em; margin-right:20em; font-size: 10pt">
- <center>
- {{ with .Site.Params.footer }}
- {{ . | markdownify }}
- {{ end }}
- </center>
- </div>
-</footer>
-</body>
-</html>
+{{ with .Site.Params.footer }}
+{{ . | markdownify }}
+{{ end }}
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 546851c..8708ddb 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,9 +1,6 @@
-<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
- <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
- <link rel="stylesheet" href="{{ "/css/fonts.css" | relURL }}" />
- <script async type="text/javascript" src="js/code.js"> </script>
-</head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
+<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
+<link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
+<link rel="stylesheet" href="{{ "/css/fonts.css" | relURL }}" />
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index f3feda0..9deb68f 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,10 +1,24 @@
-<!DOCTYPE html>
-<html lang=en-us>
- {{ partial "head.html" . }}
- <header>
- <img width="100em" height="100em" src="/images/logo.jpg" alt="my logo">
- <div>
- <h1>mjkw.pl</h1>
- {{ partial "navigation.html" .}}
- </div>
- </header>
+<img width="100em" height="100em" src="/images/logo.jpg" alt="mjkw logo">
+<div>
+ <h1>mjkw.pl</h1>
+ <ul>
+ <li>
+ <a href="/">home</a>
+ </li>
+ <li>
+ <a href="/articles">articles</a>
+ </li>
+ <li>
+ <a href="https://git.denounce.ai/">git.denounce.ai</a>
+ </li>
+ <li>
+ <a href="https://ohmyghost.nl">ohmyghost.nl</a>
+ </li>
+ <li>
+ <a href="https://atlarge-research.com/mkwiatkowski/">research</a>
+ </li>
+ <li>
+ <a href="/contact">contact me</a>
+ </li>
+ </ul>
+</div>
diff --git a/layouts/partials/navigation.html b/layouts/partials/navigation.html
deleted file mode 100644
index 6d9d2ca..0000000
--- a/layouts/partials/navigation.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<ul>
- <li>
- <a href="/">home</a>
- </li>
- <li>
- <a href="https://git.denounce.ai/">git.denounce.ai</a>
- </li>
- <li>
- <a href="https://ohmyghost.nl">ohmyghost.nl</a>
- </li>
- <li>
- <a href="https://atlarge-research.com/mkwiatkowski/">research</a>
- </li>
- <li>
- <a href="/contact">contact me</a>
- </li>
-</ul>
-