aboutsummaryrefslogtreecommitdiff
path: root/templates/default.html
diff options
context:
space:
mode:
authorPaweł Dybiec <pawel.to.malpa@gmail.com>2019-12-31 01:33:27 +0100
committerPaweł Dybiec <pawel.to.malpa@gmail.com>2019-12-31 01:33:27 +0100
commitcaef9bd707ea2f69275c70a1f187962196a76c5d (patch)
tree2e81a333f7dc477939c9e8b6d3f9bc6a0dc5ca2d /templates/default.html
parentIgnore hakyll directories (diff)
My css + removed some template stuff
Diffstat (limited to 'templates/default.html')
-rw-r--r--templates/default.html71
1 files changed, 41 insertions, 30 deletions
diff --git a/templates/default.html b/templates/default.html
index e91badc..979de47 100644
--- a/templates/default.html
+++ b/templates/default.html
@@ -1,33 +1,44 @@
<!doctype html>
<html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="x-ua-compatible" content="ie=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>My Hakyll Blog - $title$</title>
- <link rel="stylesheet" href="/css/default.css" />
- </head>
- <body>
- <header>
- <div class="logo">
- <a href="/">My Hakyll Blog</a>
- </div>
- <nav>
- <a href="/">Home</a>
- <a href="/about.html">About</a>
- <a href="/contact.html">Contact</a>
- <a href="/archive.html">Archive</a>
- </nav>
- </header>
-
- <main role="main">
- <h1>$title$</h1>
- $body$
- </main>
-
- <footer>
- Site proudly generated by
- <a href="http://jaspervdj.be/hakyll">Hakyll</a>
- </footer>
- </body>
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>dyniec - $title$</title>
+ <link rel="stylesheet" href="/style.css" />
+ </head>
+ <body>
+ <aside>
+ <div>
+ <a href="/">
+ <img src="/images/profile.jpg" alt="dyniec's website" title="dyniec's website">
+ </a>
+
+ <nav>
+ <h1> <a href="/">Home</a> </h1>
+ <ul>
+ <li> <a href="/about.html"> About me </a> </li>
+ </ul>
+
+ <h1> Links </h1>
+ <ul>
+ <li> <a href="https://github.com/dyniec">GitHub </a> </li>
+ <li> <a href="https://git.dybiec.info">My git </a> </li>
+ </ul>
+ </nav>
+
+ </div>
+ </aside>
+ <main>
+ <div id="content">
+ <h1>$title$</h1>
+ $body$
+
+ </div>
+ <footer>
+ Site proudly generated by
+ <a href="http://jaspervdj.be/hakyll">Hakyll</a>
+ </footer>
+ </main>
+ </body>
</html>