diff --git a/layouts/home.html b/layouts/home.html new file mode 100644 index 0000000..ef99573 --- /dev/null +++ b/layouts/home.html @@ -0,0 +1,15 @@ +{{ define "main" }} +
+
+

{{ .Title }}

+ {{ with .Params.subtitle }} + {{ . }} + {{ end }} +
+
+ + {{ .Content }} +
+
+{{ end }} + diff --git a/layouts/index.html b/layouts/index.html deleted file mode 100644 index cd86013..0000000 --- a/layouts/index.html +++ /dev/null @@ -1,9 +0,0 @@ -{{ define "main" }} -
- {{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }} - {{ range $paginator.Pages }} - {{ .Render "summary" }} - {{ end }} - {{ partial "pagination.html" . }} -
-{{ end }}