Skip to content

Commit caa61c3

Browse files
committed
adding github and slack
Signed-off-by: h4l0gen <[email protected]>
1 parent 8ad95a3 commit caa61c3

File tree

3 files changed

+24
-19
lines changed

3 files changed

+24
-19
lines changed

config.toml

+10-15
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,10 @@ name = "Roboto Mono"
3030
sizes = [300, 400, 600, 700]
3131
type = "monospace"
3232

33-
[[menu.main]]
34-
name = "GitHub"
35-
url = "/github/"
36-
weight = 1
37-
3833
[[menu.main]]
3934
name = "About"
4035
identifier = "about"
41-
weight = 2
36+
weight = 1
4237

4338
[[menu.main]]
4439
name = "Overview"
@@ -59,15 +54,15 @@ url = "/timeline"
5954
weight = 3
6055

6156
[[menu.main]]
62-
name = "Publications"
57+
name = "Project"
6358
parent = "about"
64-
url = "/publications"
65-
weight = 5
59+
url = "/project"
60+
weight = 4
6661

6762
[[menu.main]]
68-
name = "Project"
63+
name = "Publications"
6964
parent = "about"
70-
url = "/project"
65+
url = "/publications"
7166
weight = 5
7267

7368
[[menu.main]]
@@ -79,7 +74,7 @@ weight = 6
7974
[[menu.main]]
8075
name = "Getting started"
8176
identifier = "getting-started"
82-
weight = 3
77+
weight = 2
8378

8479
[[menu.main]]
8580
name = "Security"
@@ -127,7 +122,7 @@ weight = 7
127122
[[menu.main]]
128123
name = "Community"
129124
identifier = "community"
130-
weight = 4
125+
weight = 3
131126

132127
[[menu.main]]
133128
name = "Adoptions"
@@ -160,9 +155,9 @@ url = "https://github.com/theupdateframework/python-tuf"
160155
weight = 5
161156

162157
[[menu.main]]
163-
name = "Chat (CNCF Slack)"
158+
name = "GitHub"
164159
parent = "community"
165-
url = "https://cloud-native.slack.com/archives/C8NMD3QJ3"
160+
url = "/github"
166161
weight = 6
167162

168163
[[menu.main]]

content/_index.md

-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@
44
The Update Framework (**TUF**) helps developers maintain the security of software update systems, providing protection even against attackers that compromise the repository or signing keys. TUF provides a flexible framework and [specification](https://theupdateframework.github.io/specification/latest/) that developers can adopt into any software update system.
55

66
TUF is hosted by the [Linux Foundation](https://www.linuxfoundation.org/) as part of the [Cloud Native Computing Foundation](https://www.cncf.io) (CNCF) and is [used in production](/adoptions) by various tech companies and open source organizations. A variant of TUF called [Uptane](https://uptane.github.io/) is widely used to secure over-the-air updates in automobiles.
7-
8-
> [**TUF GitHub**](https://github.com/theupdateframework)

layouts/partials/footer.html

+14-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,22 @@
22
{{ $copy := site.Params.copyright | markdownify }}
33
<footer class="footer has-background-black">
44
<div class="container">
5-
<div class="content is-copyright has-text-light">
5+
<div class="content has-text-light">
6+
<div class="social-icons" style="margin-bottom: 20px;">
7+
<a href="/github" rel="noopener noreferrer" style="margin-right: 10px;">
8+
<i class="fab fa-github fa-2x has-text-light"></i>
9+
</a>
10+
<a href="https://cloud-native.slack.com/archives/C8NMD3QJ3" target="_blank" rel="noopener noreferrer">
11+
<i class="fab fa-slack fa-2x has-text-light"></i>
12+
</a>
13+
</div>
14+
615
<p class="has-text-weight-bold">
716
&copy; {{ $year }} The Update Framework authors | Documentation Distributed under CC-BY-4.0
817
</p>
918

1019
<p class="has-text-weight-bold">
11-
&copy; {{ $year }} The Linux Foundation. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage">Trademark Usage</a> page.
20+
&copy; {{ $year }} The Linux Foundation. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage">Trademark Usage</a> page.
1221
</p>
1322

1423
<hr class="thick" />
@@ -17,3 +26,6 @@
1726
</div>
1827
</div>
1928
</footer>
29+
30+
<!-- Include FontAwesome -->
31+
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>

0 commit comments

Comments
 (0)