Skip to content

Commit b3c5231

Browse files
Merge pull request #184 from kube-logging/cncf-sandbox-onboarding
CNCF sandbox onboarding chores
2 parents c65c0e5 + 7891761 commit b3c5231

File tree

3 files changed

+52
-2
lines changed

3 files changed

+52
-2
lines changed

config/_default/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ twitter = "calisti12"
4848

4949
# email = ""
5050

51-
copyright = "kube-logging authors"
51+
copyright = "kube-logging authors | "
5252

5353
relativeURLs = true
5454

content/_index.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The Logging operator <b>manages the log collectors and log forwarders</b> of you
6161
</div>
6262
{{% /blocks/lead %}}
6363

64-
{{< blocks/section color="dark" type="features">}}
64+
{{< blocks/section color="primary" type="features">}}
6565
{{% blocks/feature icon="fa-lightbulb" title="Learn more about Logging operator!" url="/docs/" %}}
6666
Read the Logging operator documentation.
6767
{{% /blocks/feature %}}
@@ -74,3 +74,11 @@ We do a [Pull Request](https://github.com/kube-logging/logging-operator/pulls) c
7474
In case you need help, you can find on <a href="https://join.slack.com/t/emergingtechcommunity/shared_invite/zt-1rw2jl0ht-yNdyFgBFlc%7Eyzo9AnE4FbA">Slack</a> and <a href="https://discord.gg/9ACY4RDsYN">Discord</a>.
7575
{{% /blocks/feature %}}
7676
{{< /blocks/section >}}
77+
78+
{{% blocks/lead color="dark" %}}
79+
<div class="lead-text">
80+
<p>We are a <a href="https://www.cncf.io/projects/">Cloud Native Computing Foundation sandbox project</a>.</p>
81+
82+
<a href="https://www.cncf.io/" target="_blank"><img src="https://raw.githubusercontent.com/cncf/artwork/master/other/cncf/horizontal/white/cncf-white.svg" width="33%"></img></a>
83+
</div>
84+
{{% /blocks/lead %}}

layouts/partials/footer.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!-- Copied from Docsy to add textual links because https://github.com/google/docsy/pull/1500 is not merged yet -->
2+
3+
{{ $links := .Site.Params.links }}
4+
<footer class="bg-dark py-5 row d-print-none">
5+
<div class="container-fluid mx-sm-5">
6+
<div class="row">
7+
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
8+
{{ with $links }}
9+
{{ with index . "user"}}
10+
{{ template "footer-links-block" . }}
11+
{{ end }}
12+
{{ end }}
13+
</div>
14+
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
15+
{{ with $links }}
16+
{{ with index . "developer"}}
17+
{{ template "footer-links-block" . }}
18+
{{ end }}
19+
{{ end }}
20+
</div>
21+
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
22+
<small class="text-white"><a class="text-white" href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage</a> | </small>
23+
{{ with .Site.Params.copyright }}<small class="text-white">&copy; {{ now.Year}} {{ .}} {{ T "footer_all_rights_reserved" }}</small>{{ end }}
24+
{{ with .Site.Params.privacy_policy }}<small class="ml-1"><a href="{{ . }}" target="_blank" rel="noopener">{{ T "footer_privacy_policy" }}</a></small>{{ end }}
25+
{{ if not .Site.Params.ui.footer_about_disable }}
26+
{{ with .Site.GetPage "about" }}<p class="mt-2"><a href="{{ .RelPermalink }}">{{ .Title }}</a></p>{{ end }}
27+
{{ end }}
28+
</div>
29+
</div>
30+
</div>
31+
</footer>
32+
{{ define "footer-links-block" }}
33+
<ul class="list-inline mb-0">
34+
{{ range . }}
35+
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="{{ .name }}" aria-label="{{ .name }}">
36+
<a class="text-white" target="_blank" rel="noopener" href="{{ .url }}" aria-label="{{ .name }}">
37+
<i class="{{ .icon }}"></i>
38+
</a>
39+
</li>
40+
{{ end }}
41+
</ul>
42+
{{ end }}

0 commit comments

Comments
 (0)