diff --git a/archetypes/posts.md b/archetypes/posts.md
new file mode 100644
index 0000000..9cacca3
--- /dev/null
+++ b/archetypes/posts.md
@@ -0,0 +1,13 @@
++++
+title = "{{ replace .TranslationBaseName "-" " " | title }}"
+date = "{{ .Date }}"
+author = ""
+authorTwitter = "" #do not include @
+cover = ""
+tags = ["", ""]
+keywords = ["", ""]
+description = ""
+showFullContent = false
+readingTime = false
+hideComments = false
++++
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index c2427d8..5d5e17b 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -16,5 +16,6 @@
-{{ .Site.Title | title }}
-{{ partial "nav.html" . }}
+{{ partial "logo.html" . }}
+
+{{ partial "menu.html" . }}
diff --git a/layouts/partials/logo.html b/layouts/partials/logo.html
new file mode 100644
index 0000000..3d4a8c2
--- /dev/null
+++ b/layouts/partials/logo.html
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html
new file mode 100644
index 0000000..46edd87
--- /dev/null
+++ b/layouts/partials/menu.html
@@ -0,0 +1,8 @@
+
diff --git a/static/logoOptimised.svg b/static/logoOptimised.svg
new file mode 100644
index 0000000..10f9d80
--- /dev/null
+++ b/static/logoOptimised.svg
@@ -0,0 +1,95 @@
+
+
diff --git a/static/style.css b/static/style.css
index d9474fe..5eba152 100644
--- a/static/style.css
+++ b/static/style.css
@@ -16,7 +16,12 @@ a:hover::selection{ color: #f0c674; }
audio{ width: 100%; display: block; margin-top: 1em; }
main{ margin-left: 12em; margin-right: 1em; padding: 1em; border:1pt solid; margin-bottom: 1em;}
main h1{border-bottom: 1pt solid;}
-article{padding:1em; border:#282a2e 1pt solid;}
+/*
+article{
+ padding:1em;
+ background: linear-gradient(to right,#1d1f21,#282a2e);
+}
+*/
nav{height: 100%;padding: 0.5em; float:left; background: #282a2e; border-right:solid 1pt; border-bottom: solid 1pt; width: 10em;}
nav li{list-style: none; list-style-position:outside;}
nav a{ display: block;}
@@ -35,6 +40,10 @@ pre{ background: #282a2e; padding: 1em; border-radius: 1em;}
background-color: #282a2e;
background: linear-gradient(to right,#b294bb,#282a2e);
}
+.logo a{
+ color: #eaeaea;
+ text-decoration: inherit;
+}
.about ul{list-style:none;}
.about img{height:10em; float:left;}
header{text-transform: capitalize; text-align:center;border-bottom:2pt solid; font-weight:bold;}