From a87369c085c71b94c768107e1bab4194c25b553d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sun, 2 Apr 2023 14:08:44 +0200 Subject: [PATCH] feat: add imprint --- content/imprint.md | 26 ++++++ layouts/partials/footer.html | 150 +++++++++++++++++++++++++++++++++++ 2 files changed, 176 insertions(+) create mode 100644 content/imprint.md create mode 100644 layouts/partials/footer.html diff --git a/content/imprint.md b/content/imprint.md new file mode 100644 index 0000000..d4d96fb --- /dev/null +++ b/content/imprint.md @@ -0,0 +1,26 @@ +--- +title: "Imprint & Privacy" +--- + +## Imprint + +Julian Tölle + +c/o autorenglück.de +Franz-Mehring-Str. 15 +01237 Dresden + +### Contact + +Email: website@apricote.de +Phone: +49 15678 408887 + +### Content + +Responsible for content: Julian Tölle + +## Privacy + +### Hosting + +This website is being hosted by Vercel, the Privacy Policy of Vercel can be found here: https://vercel.com/legal/privacy-policy diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..c192a29 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,150 @@ +{{/* + Template based on PaperMod's footer + https://github.com/adityatelange/hugo-PaperMod/blob/master/layouts/partials/footer.html + + Needs to be overwritten in order to add custom pages to the footer which + is not possible via the `extend_footer.html` file +*/ -}} + +{{- if not (.Param "hideFooter") }} + +{{- end }} + +{{- if (not site.Params.disableScrollToTop) }} + + + + + +{{- end }} + +{{- partial "extend_footer.html" . }} + + + +{{- if (not site.Params.disableScrollToTop) }} + +{{- end }} + +{{- if (not site.Params.disableThemeToggle) }} + +{{- end }} + +{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (.Param "ShowCodeCopyButtons")) }} + +{{- end }} \ No newline at end of file