diff --git a/README.md b/README.md
index db2098c..a787ef0 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
# kobel
-Pure CSS Hugo theme for personal blogs
\ No newline at end of file
+A pure CSS Hugo theme for personal blogs
\ No newline at end of file
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 0000000..ac36e06
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,2 @@
++++
++++
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..e69de29
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..5f8e2ec
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
+
+
+ {{- partial "head.html" . -}}
+
+ {{- partial "header.html" . -}}
+
+ {{- block "main" . }}{{- end }}
+
+ {{- partial "footer.html" . -}}
+
+
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..e69de29
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..e69de29
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..e69de29
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..e69de29
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..e69de29
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..e69de29
diff --git a/theme.toml b/theme.toml
new file mode 100644
index 0000000..635fa3c
--- /dev/null
+++ b/theme.toml
@@ -0,0 +1,12 @@
+name = "Kobel"
+license = "GNU GPLv3"
+licenselink = "https://code.nutfactory.org/themes/kobel/src/branch/main/LICENSE"
+description = "A Pure CSS Hugo theme for personal websites"
+homepage = "https://nutfactory.org"
+tags = []
+features = []
+min_version = "0.41.0"
+
+[author]
+ name = "Hoernschen"
+ homepage = "https://hoernschen.de"
\ No newline at end of file