From e7a91af6b5fffe7c9d845123c6c2fcfd73d9b02f Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 25 Nov 2021 11:54:39 +0100 Subject: Update theme to show post list on top level again --- .../layouts/partials/foot_custom.html | 25 ++++++++++++++++ themes/blog.jaseg.de/layouts/partials/footer.html | 17 +++++++++++ .../layouts/partials/head_custom.html | 33 ++++++++++++++++++++++ themes/blog.jaseg.de/layouts/partials/header.html | 16 +++++++++++ 4 files changed, 91 insertions(+) create mode 100644 themes/blog.jaseg.de/layouts/partials/foot_custom.html create mode 100644 themes/blog.jaseg.de/layouts/partials/footer.html create mode 100644 themes/blog.jaseg.de/layouts/partials/head_custom.html create mode 100644 themes/blog.jaseg.de/layouts/partials/header.html (limited to 'themes/blog.jaseg.de/layouts/partials') diff --git a/themes/blog.jaseg.de/layouts/partials/foot_custom.html b/themes/blog.jaseg.de/layouts/partials/foot_custom.html new file mode 100644 index 0000000..3d9fb1d --- /dev/null +++ b/themes/blog.jaseg.de/layouts/partials/foot_custom.html @@ -0,0 +1,25 @@ + + diff --git a/themes/blog.jaseg.de/layouts/partials/footer.html b/themes/blog.jaseg.de/layouts/partials/footer.html new file mode 100644 index 0000000..9a6f133 --- /dev/null +++ b/themes/blog.jaseg.de/layouts/partials/footer.html @@ -0,0 +1,17 @@ + + + diff --git a/themes/blog.jaseg.de/layouts/partials/head_custom.html b/themes/blog.jaseg.de/layouts/partials/head_custom.html new file mode 100644 index 0000000..6520ca0 --- /dev/null +++ b/themes/blog.jaseg.de/layouts/partials/head_custom.html @@ -0,0 +1,33 @@ +
+ + + + + + +
diff --git a/themes/blog.jaseg.de/layouts/partials/header.html b/themes/blog.jaseg.de/layouts/partials/header.html new file mode 100644 index 0000000..6ef9a69 --- /dev/null +++ b/themes/blog.jaseg.de/layouts/partials/header.html @@ -0,0 +1,16 @@ + + + + + + {{ .Title }} | {{ .Site.Title }} + + + {{ range .Site.Params.custom_css -}} + + {{- end }} + {{ partial "head_custom.html" . }} + + + +
-- cgit