diff --git a/layouts/all.html b/layouts/all.html
deleted file mode 100644
index 128ce10..0000000
--- a/layouts/all.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{{ define "main" }}
- {{ if eq .Kind "home" }}
- {{ .Content }}
- {{ range .Site.RegularPages }}
-
- {{ end }}
- {{ else if eq .Kind "page" }}
- {{ .Title }}
- {{ .Content }}
- {{ else if in (slice "section" "taxonomy" "term") .Kind }}
- {{ .Title }}
- {{ .Content }}
- {{ range .Pages }}
-
- {{ end }}
- {{ else }}
- {{ errorf "Unsupported page kind: %s" .Kind }}
- {{ end }}
-{{ end }}
diff --git a/layouts/list.html b/layouts/list.html
deleted file mode 100644
index 7c5437d..0000000
--- a/layouts/list.html
+++ /dev/null
@@ -1,6 +0,0 @@
-{{ define "main" }}
- {{ .Content }}
- {{ range .Pages }}
-
- {{ end }}
-{{ end }}
diff --git a/layouts/single.html b/layouts/single.html
deleted file mode 100644
index e0e8308..0000000
--- a/layouts/single.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{{ define "main" }}
- {{ .Content }}
-{{ end }}