Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding GitHub option on our website #55

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ url = "/timeline"
weight = 3

[[menu.main]]
name = "Publications"
name = "Project"
parent = "about"
url = "/publications"
weight = 5
url = "/project"
weight = 4

[[menu.main]]
name = "Project"
name = "Publications"
parent = "about"
url = "/project"
url = "/publications"
weight = 5

[[menu.main]]
Expand Down Expand Up @@ -106,7 +106,6 @@ parent = "getting-started"
url = "/specification/list"
weight = 5


[[menu.main]]
name = "Implementations"
parent = "getting-started"
Expand Down Expand Up @@ -148,17 +147,23 @@ parent = "community"
url = "/taps"
weight = 4

[[menu.main]]
name = "GitHub"
parent = "community"
url = "/github"
weight = 5

[[menu.main]]
name = "Contribute"
parent = "community"
url = "https://github.com/theupdateframework/python-tuf"
weight = 5
weight = 6

[[menu.main]]
name = "Chat (CNCF Slack)"
parent = "community"
url = "https://cloud-native.slack.com/archives/C8NMD3QJ3"
weight = 6
weight = 7

[[menu.main]]
name = "News"
Expand Down
32 changes: 32 additions & 0 deletions content/github.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: Join TUF GitHub
---

### Check out [theupdateframework](https://github.com/theupdateframework) GitHub repositories:

> ## [python-tuf Repository](https://github.com/theupdateframework/python-tuf)
> this repository is a reference implementation written in python

> ## [specification Repository](https://github.com/theupdateframework/specification)
> The Update Framework specification

> ## [theupdateframework.io Repository](https://github.com/theupdateframework/theupdateframework.io)
> Website assets for TUF

> ## [community Repository](https://github.com/theupdateframework/community)
> Community repository of TUF

> ## [taps Repository](https://github.com/theupdateframework/taps)
> TUF Augmentation Proposals (TAPs)

> ## [tuf-on-ci Repository](https://github.com/theupdateframework/tuf-on-ci)
> A TUF repository and signing tool

> ## [rust-tuf Repository](https://github.com/theupdateframework/rust-tuf)
> Rust implementation of The Update Framework (TUF)

> ## [go-tuf Repository](https://github.com/theupdateframework/go-tuf)
> Go implementation of The Update Framework (TUF)

> ## [tuf-js Repository](https://github.com/theupdateframework/tuf-js)
> JavaScript implementation of the Update Framework (TUF)
12 changes: 12 additions & 0 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
<footer class="footer has-background-black">
<div class="container">
<div class="content is-copyright has-text-light">
<div class="social-icons" style="margin-bottom: 20px;">
<a href="/github" rel="noopener noreferrer" style="margin-right: 10px;">
<i class="fab fa-github fa-2x has-text-light"></i>
</a>
<a href="https://cloud-native.slack.com/archives/C8NMD3QJ3" target="_blank" rel="noopener noreferrer">
<i class="fab fa-slack fa-2x has-text-light"></i>
</a>
</div>

<p class="has-text-weight-bold">
&copy; {{ $year }} The Update Framework authors | Documentation Distributed under CC-BY-4.0
</p>
Expand All @@ -17,3 +26,6 @@
</div>
</div>
</footer>

<!-- Include FontAwesome -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>