From c1d7fa86e1b48b86c6eca5ae196dc480e3a91301 Mon Sep 17 00:00:00 2001 From: Robert Fekete Date: Wed, 20 Sep 2023 15:38:39 +0200 Subject: [PATCH 1/2] [main page] Logging operator is a CNCF sandbox project --- content/_index.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/_index.md b/content/_index.md index 79de9ca9a..ba989b301 100644 --- a/content/_index.md +++ b/content/_index.md @@ -61,7 +61,7 @@ The Logging operator manages the log collectors and log forwarders of you {{% /blocks/lead %}} -{{< blocks/section color="dark" type="features">}} +{{< blocks/section color="primary" type="features">}} {{% blocks/feature icon="fa-lightbulb" title="Learn more about Logging operator!" url="/docs/" %}} Read the Logging operator documentation. {{% /blocks/feature %}} @@ -74,3 +74,11 @@ We do a [Pull Request](https://github.com/kube-logging/logging-operator/pulls) c In case you need help, you can find on Slack and Discord. {{% /blocks/feature %}} {{< /blocks/section >}} + +{{% blocks/lead color="dark" %}} +
+

We are a Cloud Native Computing Foundation sandbox project.

+ + +
+{{% /blocks/lead %}} From 78917618fd2201b01745fa5e0cd2afed0202a2ec Mon Sep 17 00:00:00 2001 From: Robert Fekete Date: Wed, 20 Sep 2023 16:05:15 +0200 Subject: [PATCH 2/2] Adds LF trademark usage link to footer --- config/_default/config.toml | 2 +- layouts/partials/footer.html | 42 ++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/footer.html diff --git a/config/_default/config.toml b/config/_default/config.toml index fe3fcf21c..786b873d3 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -48,7 +48,7 @@ twitter = "calisti12" # email = "" - copyright = "kube-logging authors" + copyright = "kube-logging authors | " relativeURLs = true diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 000000000..2d0dd71e9 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,42 @@ + + +{{ $links := .Site.Params.links }} +
+
+
+
+ {{ with $links }} + {{ with index . "user"}} + {{ template "footer-links-block" . }} + {{ end }} + {{ end }} +
+
+ {{ with $links }} + {{ with index . "developer"}} + {{ template "footer-links-block" . }} + {{ end }} + {{ end }} +
+
+ Trademark Usage | + {{ with .Site.Params.copyright }}© {{ now.Year}} {{ .}} {{ T "footer_all_rights_reserved" }}{{ end }} + {{ with .Site.Params.privacy_policy }}{{ T "footer_privacy_policy" }}{{ end }} + {{ if not .Site.Params.ui.footer_about_disable }} + {{ with .Site.GetPage "about" }}

{{ .Title }}

{{ end }} + {{ end }} +
+
+
+
+{{ define "footer-links-block" }} + +{{ end }}