From 1f824e6ae5ac39d0cefe0244ea9223c1783494f3 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 21 Aug 2016 16:32:35 +0200 Subject: first commit, dummies --- themes/flog/layouts/404.html | 0 themes/flog/layouts/_default/list.html | 3 +++ themes/flog/layouts/_default/single.html | 13 +++++++++++++ themes/flog/layouts/index.html | 3 +++ themes/flog/layouts/partials/footer.html | 18 ++++++++++++++++++ themes/flog/layouts/partials/header.html | 27 +++++++++++++++++++++++++++ themes/flog/layouts/partials/listing.html | 28 ++++++++++++++++++++++++++++ 7 files changed, 92 insertions(+) create mode 100644 themes/flog/layouts/404.html create mode 100644 themes/flog/layouts/_default/list.html create mode 100644 themes/flog/layouts/_default/single.html create mode 100644 themes/flog/layouts/index.html create mode 100644 themes/flog/layouts/partials/footer.html create mode 100644 themes/flog/layouts/partials/header.html create mode 100644 themes/flog/layouts/partials/listing.html (limited to 'themes/flog/layouts') diff --git a/themes/flog/layouts/404.html b/themes/flog/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/themes/flog/layouts/_default/list.html b/themes/flog/layouts/_default/list.html new file mode 100644 index 0000000..38c4c59 --- /dev/null +++ b/themes/flog/layouts/_default/list.html @@ -0,0 +1,3 @@ +{{ partial "header.html" . }} +{{ partial "listing.html" . }} +{{ partial "footer.html" . }} diff --git a/themes/flog/layouts/_default/single.html b/themes/flog/layouts/_default/single.html new file mode 100644 index 0000000..6012d94 --- /dev/null +++ b/themes/flog/layouts/_default/single.html @@ -0,0 +1,13 @@ +{{ partial "header.html" . }} +
+
+
+

{{ .Title }}

+ +
+

{{ .Content }}

+
+
+
+
+{{ partial "footer.html" . }} diff --git a/themes/flog/layouts/index.html b/themes/flog/layouts/index.html new file mode 100644 index 0000000..38c4c59 --- /dev/null +++ b/themes/flog/layouts/index.html @@ -0,0 +1,3 @@ +{{ partial "header.html" . }} +{{ partial "listing.html" . }} +{{ partial "footer.html" . }} diff --git a/themes/flog/layouts/partials/footer.html b/themes/flog/layouts/partials/footer.html new file mode 100644 index 0000000..c3c6fca --- /dev/null +++ b/themes/flog/layouts/partials/footer.html @@ -0,0 +1,18 @@ + + + + + + + diff --git a/themes/flog/layouts/partials/header.html b/themes/flog/layouts/partials/header.html new file mode 100644 index 0000000..5a32775 --- /dev/null +++ b/themes/flog/layouts/partials/header.html @@ -0,0 +1,27 @@ + + + + + {{ .Hugo.Generator }} + + + + {{ .Title }}{{ if not .IsHome }} - {{ .Site.Title }}{{ end }} + + +
+ +
+
diff --git a/themes/flog/layouts/partials/listing.html b/themes/flog/layouts/partials/listing.html new file mode 100644 index 0000000..bc97b30 --- /dev/null +++ b/themes/flog/layouts/partials/listing.html @@ -0,0 +1,28 @@ +
+

{{ .Title }}

+
+
+ {{ range .Data.Pages }} + {{ if .Params.image }} +
+ {{ else }} +
+ {{ end }} +
+ {{ if .Params.image }} +
+ +
+ {{ end }} +
+ {{ .Title }} +

{{ .Summary }}

+
+ +
+
+ {{ end }} +
+
-- cgit v1.3.1