diff --git a/themes/.DS_Store b/themes/.DS_Store
new file mode 100644
index 0000000..f5c77af
Binary files /dev/null and b/themes/.DS_Store differ
diff --git a/themes/hugo-bulma-cookbook/.DS_Store b/themes/hugo-bulma-cookbook/.DS_Store
new file mode 100644
index 0000000..1095e14
Binary files /dev/null and b/themes/hugo-bulma-cookbook/.DS_Store differ
diff --git a/themes/hugo-bulma-cookbook/layouts/_default/index.html b/themes/hugo-bulma-cookbook/layouts/_default/index.html
new file mode 100644
index 0000000..7771080
--- /dev/null
+++ b/themes/hugo-bulma-cookbook/layouts/_default/index.html
@@ -0,0 +1,6 @@
+{{ partial "header.html" . }}
+{{ partial "hero.html" . }}
+
+
+ {{ .Content }}
+
\ No newline at end of file
diff --git a/themes/hugo-bulma-cookbook/layouts/_default/list.html b/themes/hugo-bulma-cookbook/layouts/_default/list.html
new file mode 100644
index 0000000..f0ff922
--- /dev/null
+++ b/themes/hugo-bulma-cookbook/layouts/_default/list.html
@@ -0,0 +1,38 @@
+{{ partial "header.html" . }}
+{{ partial "hero.html" . }}
+
+
+
+ {{ range .RegularPages }}
+
+ {{ end }}
+
+
+{{ partial "footer.html" . }}
\ No newline at end of file
diff --git a/themes/hugo-bulma-cookbook/layouts/_default/single.html b/themes/hugo-bulma-cookbook/layouts/_default/single.html
new file mode 100644
index 0000000..10cdc61
--- /dev/null
+++ b/themes/hugo-bulma-cookbook/layouts/_default/single.html
@@ -0,0 +1,26 @@
+{{ partial "header.html" . }}
+{{ partial "hero.html" . }}
+
+
+
+
+
+ {{ .Content }}
+
+
+
Posted: {{ .Date.Format "Mon Jan 2, 2006" }}
+
Word Count: {{ .WordCount }} Words
+
+
+
Tags
+ {{ with .Params.tags }}
+ {{ range . }}
+
+ {{ . }}
+
+ {{ end }}
+ {{ end }}
+
+
+
+{{ partial "footer.html" . }}
\ No newline at end of file
diff --git a/themes/hugo-bulma-cookbook/layouts/_default/taxonomy.html b/themes/hugo-bulma-cookbook/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..4c57d5d
--- /dev/null
+++ b/themes/hugo-bulma-cookbook/layouts/_default/taxonomy.html
@@ -0,0 +1,11 @@
+{{ partial "header.html" . }}
+{{ partial "hero.html" . }}
+
+
+
+
+ {{ range .Pages }}
+ {{ .Render "tags"}}
+ {{ end }}
+
+
diff --git a/themes/hugo-bulma-cookbook/layouts/partials/footer.html b/themes/hugo-bulma-cookbook/layouts/partials/footer.html
new file mode 100644
index 0000000..81b65ae
--- /dev/null
+++ b/themes/hugo-bulma-cookbook/layouts/partials/footer.html
@@ -0,0 +1,3 @@
+ footer part
+