diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..4712c57
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,36 @@
+
+
+
+ {{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}
+
+
+
+ {{ with .Site.Params.favicon }}{{ end }}
+
+ {{ if isset .Params "tags" }}{{ end }}
+
+
+
+
+
+
+
+{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end }}
+
+
+{{ .Title }}
+{{ block "main" . }}
+{{ .Content }}
+{{ end }}
+{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end }}
+
+{{ if .Param "nextprev" }}{{ partial "nextprev.html" . }}{{ end }}
+
+
+{{ block "footer" . }}
+
+{{ end }}
+
+
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..e22283f
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,23 @@
+{{ define "title" -}}
+{{ .Title | title }}
+{{- end }}
+{{ define "main" -}}
+{{ .Content }}
+{{ if not .IsHome }}
+
+ {{- range .Pages }}
+ -
+ {{- if .Param "datesinlist" }} – {{ end -}}
+ {{ .Title }}
+ {{- if .Param "authorsinlist" }}
+ {{ with .Params.authors }}
+ by
+ {{ delimit . ", " " and " }}
+ {{ end }}
+ {{ end -}}
+
+ {{- end }}
+
+{{ end }}
+
+{{- end }}
diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml
new file mode 100644
index 0000000..635a2f6
--- /dev/null
+++ b/layouts/_default/rss.xml
@@ -0,0 +1,31 @@
+
+
+ {{.Site.Params.favicon }}
+ {{ .Site.Title }}
+ {{ .Permalink }}/
+
+
+ {{ .Site.Title }}
+ {{ .Permalink }}
+ Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}
+ Hugo -- gohugo.io{{ with .Site.LanguageCode }}
+ {{.}}{{end}}{{ with .Site.Author.email }}
+ {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }}
+ {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }}
+ {{.}}{{end}}{{ if not .Date.IsZero }}
+ {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }}
+ {{ with .OutputFormats.Get "RSS" }}
+ {{ printf "" .Permalink .MediaType | safeHTML }}
+ {{ end }}
+ {{ range .Site.RegularPages }}
+ -
+ {{ .Title }}
+ {{ .Permalink }}
+ {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}
+ {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}
+ {{ .Permalink }}
+ {{- .Content | html -}}
+
+ {{ end }}
+
+
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..56c5a11
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,3 @@
+{{ define "title" -}}
+{{ .Title }}
+{{- end }}