diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..51c7504
--- /dev/null
+++ b/layouts/baseof.html
@@ -0,0 +1,10 @@
+
+
+
+
+ {{ .Title }}
+
+
+ {{ block "main" . }}{{ end }}
+
+
\ No newline at end of file
diff --git a/layouts/list.html b/layouts/list.html
new file mode 100644
index 0000000..b8b075f
--- /dev/null
+++ b/layouts/list.html
@@ -0,0 +1,4 @@
+{{ define "main" }}
+ {{ .Title }}
+ {{ .Content }}
+{{ end }}
\ No newline at end of file