diff --git a/layouts/blog/list.html b/layouts/blog/list.html
new file mode 100644
index 0000000..917ca38
--- /dev/null
+++ b/layouts/blog/list.html
@@ -0,0 +1,15 @@
+{{ define "main" -}}
+
+
{{ .Title }}
+ {{ with .Params.tagline }}
{{ . }}{{ end }}
+
+ {{ if ne .Type "page" -}}
+
+
+
+ {{- end }}
+
+
+ {{ .Content }}
+
+
+ {{ partial "tags.html" . }}
+
+ {{ if (and (ne .Params.DisableShare true) (ne .Params.disable_share true)) -}}
+ {{ partial "share.html" . }}
+ {{- end }}
+
+ {{ if (and .Site.Config.Services.Disqus.Shortname (ne .Params.DisableComments true) (ne .Params.disable_comments true)) -}}
+
+ {{- end }}
+
+{{- end }}
diff --git a/layouts/recipes/list.html b/layouts/recipes/list.html
new file mode 100644
index 0000000..7794071
--- /dev/null
+++ b/layouts/recipes/list.html
@@ -0,0 +1,12 @@
+{{ define "main" -}}
+
+
{{ .Title }}
+ {{ with .Params.tagline }}
{{ . }}{{ end }}
+
+
+
+ {{ .Content }}
+
+
+ {{ partial "tags.html" . }}
+
+ {{ if (and (ne .Params.DisableShare true) (ne .Params.disable_share true)) -}}
+ {{ partial "share.html" . }}
+ {{- end }}
+
+ {{ if (and .Site.Config.Services.Disqus.Shortname (ne .Params.DisableComments true) (ne .Params.disable_comments true)) -}}
+
+ {{- end }}
+
+{{- end }}
Comments
+ {{ template "_internal/disqus.html" . }} +