diff --git a/archetypes/.gitignore b/archetypes/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..ac36e06 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,2 @@ ++++ ++++ diff --git a/layouts/.gitignore b/layouts/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..60a6c3c --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,21 @@ + +{{ partial "header.html" . }} + + +{{ partial "head.html" . }} + + +{{ partial "navigation.html" . }} + +
+

{{ .Title }}

+

+ Diese Seite wurde leider nicht gefunden. +

+
+ + +{{ partial "foot.html" . }} + + +{{ partial "footer.html" . }} diff --git a/layouts/_default/.gitignore b/layouts/_default/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..5f8e2ec --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,11 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+ {{- block "main" . }}{{- end }} +
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..fa56736 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,26 @@ + +{{ partial "header.html" . }} + + +{{ partial "head.html" . }} + + +{{ partial "navigation.html" . }} + + +{{ range (where .Data.Pages.ByLastmod.Reverse "Section" "!=" "") }} +
+

{{ .Title }}

+

+ {{ .Content }} +

+ +
+{{ end }} + + + +{{ partial "foot.html" . }} + + +{{ partial "footer.html" . }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..0d46dbb --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,21 @@ + +{{ partial "header.html" . }} + + +{{ partial "head.html" . }} + + +{{ partial "navigation.html" . }} + +
+

{{ .Title }}

+

+ {{ .Content }} +

+
+ + +{{ partial "foot.html" . }} + + +{{ partial "footer.html" . }} diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..0d46dbb --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,21 @@ + +{{ partial "header.html" . }} + + +{{ partial "head.html" . }} + + +{{ partial "navigation.html" . }} + +
+

{{ .Title }}

+

+ {{ .Content }} +

+
+ + +{{ partial "foot.html" . }} + + +{{ partial "footer.html" . }} diff --git a/layouts/partials/.gitignore b/layouts/partials/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/foot.html b/layouts/partials/foot.html new file mode 100644 index 0000000..4841b81 --- /dev/null +++ b/layouts/partials/foot.html @@ -0,0 +1,3 @@ +