From a915c372db7326055f976d7d79926b30e8ab4c8e Mon Sep 17 00:00:00 2001 From: Stephan Lo Date: Fri, 19 Dec 2025 11:15:56 +0100 Subject: [PATCH] feat(footer): Added commit hash as build number and changed authors in footer --- hugo.toml | 2 +- layouts/partials/footer.html | 56 ++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/footer.html diff --git a/hugo.toml b/hugo.toml index fc93444..620b815 100644 --- a/hugo.toml +++ b/hugo.toml @@ -124,7 +124,7 @@ offlineSearch = true prism_syntax_highlighting = false [params.copyright] - authors = "IPCEIS-CIS Authors | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) | " + authors = "IPCEI-CIS eDF Development Team" from_year = 2024 # User interface configuration diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..e369687 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,56 @@ +{{ $links := .Site.Params.links }} + + +{{ define "footer-links-block" }} +{{ range . }} +
  • {{ .name }}
  • +{{ end }} +{{ end }}