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

Adds a link to the status page in the footer of the website #579

Merged
merged 2 commits into from
Oct 16, 2024
Merged
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
3 changes: 2 additions & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ ignoreFiles = ["README.md"]
tagline = "Manage and serve container images in a secure environment"
description = "Our mission is to be the trusted cloud native repository for Kubernetes"
intro = "Want to know more about what Harbor is and how it works? Watch this intro video to see how Harbor is helping organizations deliver a consistent image management solution across a variety of cloud native compute platforms like [Kubernetes](https://kubernetes.io) and [Docker](https://docker.com)."
font_awesome_version = "5.12.0"
font_awesome_version = "6.6.0"
favicon = "favicon.png"
cncf_status = "Graduated"
repo = "goharbor/harbor"
twitter = "project_harbor"
slack = "https://cloud-native.slack.com/messages/harbor"
github = "https://github.com/goharbor/harbor"
status_page = "https://status.goharbor.io"
user_group = "https://lists.cncf.io/g/harbor-users"
dev_group = "https://lists.cncf.io/g/harbor-dev"
logo_repo = "https://github.com/cncf/artwork/tree/master/projects/harbor"
Expand Down
58 changes: 40 additions & 18 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,57 +8,79 @@
</div>

<div class="column">
<a class="has-text-black is-small" target="_blank" href="{{ site.Params.github }}">
<div>
<a class="has-text-black is-small" target="_blank" href="{{ site.Params.github }}">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>
<span>
GitHub
</span>
</a>
<br/>
<a class="has-text-black is-small" target="_blank" href="{{ site.Params.logo_repo }}">
</a>
</div>
<div>
<a class="has-text-black is-small" target="_blank" href="{{ site.Params.status_page }}">
<span class="icon">
<i class="fa-solid fa-gauge"></i>
</span>
<span>
Community Registry Status
</span>
</a>
</div>
<div>
<a class="has-text-black is-small" target="_blank" href="{{ site.Params.logo_repo }}">
<span class="icon">
<i class="fa fa-palette"></i>
</span>
<span>
<span>
Logos
</span>
</a>
</a>
</div>
</div>


<div class="column">
<a class="has-text-black is-small" target="_blank" href="{{ site.Params.slack }}">
<div>
<a class="has-text-black is-small" target="_blank" href="{{ site.Params.slack }}">
<span class="icon">
<i class="fab fa-slack"></i>
</span>
<span>
<span>
Slack
</span>
</a>
<br/>
<a class="has-text-black is-small" target="_blank" href="https://twitter.com/{{ site.Params.twitter }}">
</a>
</div>
<div>
<a class="has-text-black is-small" target="_blank"
href="https://twitter.com/{{ site.Params.twitter }}">
<span class="icon">
<i class="fab fa-twitter"></i>
</span>
<span>
<span>
Twitter
</span>
</a>
</a>
</div>
</div>
</div>

<hr class="thick" />
<hr class="thick"/>

<div class="is-size-6 has-text-black has-text-weight-light">
<p>
&copy; Harbor Authors {{ $year}} | Documentation Distributed under <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">CC-BY-4.0</a>
&copy; Harbor Authors {{ $year}} | Documentation Distributed under <a
href="https://creativecommons.org/licenses/by/4.0/" target="_blank">CC-BY-4.0</a>
</p>

<br />
<br/>

<p>
&copy; {{ $year }} <a href="https://linuxfoundation.org" target="_blank">The Linux Foundation</a>. 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://linuxfoundation.org/trademark-usage" target="_blank">Trademark Usage</a> page.
&copy; {{ $year }} <a href="https://linuxfoundation.org" target="_blank">The Linux Foundation</a>. 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://linuxfoundation.org/trademark-usage" target="_blank">Trademark Usage</a> page.
</p>
</div>
</div>
Expand Down