diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 1cb2021..6118ce7 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -1,25 +1,22 @@ - + - - - {{ .Title }} | {{ .Site.Title }} - + + + {{ .Title }} +
- - + {{ partial "header.html" . }}
+
- {{ .Content }} + {{ block "main" . }}{{ .Content }}{{ end }}
- {{ partial "footer.html" . }} + + \ No newline at end of file diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..7ab2eb2 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,3 @@ +{{ define "main" }} + {{ .Content }} +{{ end }} \ No newline at end of file