diff --git a/content/posts/haskell-fun.md b/content/posts/haskell-fun.md
index 8de1c14..52a1a9d 100644
--- a/content/posts/haskell-fun.md
+++ b/content/posts/haskell-fun.md
@@ -1,5 +1,5 @@
+++
-title = "Haskell Test"
+title = "Syntax test post"
date = "2022-11-08"
+++
@@ -11,3 +11,15 @@ main = do
putStrLn "Nice"
}
```
+
+{% mermaid() %}
+journey
+ title My working day
+ section Go to work
+ Make tea: 5: Me
+ Go upstairs: 3: Me
+ Do work: 1: Me, Cat
+ section Go home
+ Go downstairs: 5: Me
+ Sit down: 5: Me
+{% end %}
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..0776c79
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,19 @@
+{% import "macros/macros.html" as post_macros %}
+
+
+
+{% include "partials/header.html" %}
+
+
+
+ {% include "partials/nav.html" %}
+
+ {# Post page is the default #}
+ {% block main_content %}
+ Nothing here?!
+ {% endblock main_content %}
+