diff --git a/archetypes/default.md b/archetypes/default.md
index 00e77bd..13d9021 100644
--- a/archetypes/default.md
+++ b/archetypes/default.md
@@ -1,6 +1,7 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
+description: "Example"
+tags: ['']
draft: true
----
-
+---
\ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 57e17ce..6f47fc8 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,36 +1,26 @@
-
- {{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}
-
-
-
- {{ with .Site.Params.favicon }}
- {{ end -}}
-
- {{ if isset .Params "tags" }}
- {{ end -}}
-
-
-
-
+{{ partial "head.html" . }}
+
-{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
-
-{{ block "title" . }}{{ end }}
-
-{{ block "main" . }}
-{{ .Content }}
-{{ end }}
-{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
-{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
-
-
-{{ block "footer" . }}
-
-{{ end }}
+ {{ block "header" . }}
+ {{ partial "header.html" . }}
+ {{ end }}
+
+
+
+ {{ .Page.Title }}
+
+
+
+ {{ block "main" . }}
+ {{ .Content }}
+ {{ end }}
+
+ {{ block "footer" . }}
+ {{ partial "footer.html" . }}
+ {{ end }}
+
-
+
+