mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-01 21:06:05 +00:00
1. Add LF footer. 2. Make necessary changes following CNCF guideline. Signed-off-by: Daniel Jiang <daniel.jiang@broadcom.com>
91 lines
4.5 KiB
HTML
91 lines
4.5 KiB
HTML
<div class="section section-background-darkest-blue">
|
|
<div class="section-content">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-sm-6 col-lg-8">
|
|
<h5>{{ .Site.Params.footer.title }}</h5>
|
|
<p>{{ .Site.Params.footer.content }}</p>
|
|
</div>
|
|
<div class="col-xs-12 col-sm-6 col-lg-3 offset-lg-1">
|
|
<p><strong>{{ .Site.Params.footer.cta_title }}</strong></p>
|
|
<a href="{{ .Site.Params.footer.cta_url }}"
|
|
class="btn btn-sm btn-primary btn-no-border">{{ .Site.Params.footer.cta_text }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="section site-footer">
|
|
<div class="section-content">
|
|
<div class="row justify-content-between align-items-center">
|
|
<div class="col-12 col-md-8 mb-3 mb-md-0">
|
|
<ul class="social-links text-center text-md-left">
|
|
{{ range .Site.Params.footer_social_links }}
|
|
<li>
|
|
{{ if .fa_icon }}
|
|
<i class="{{ .fa_icon }} fa-lg fa-fw mr-1"></i>
|
|
{{ end }}
|
|
{{ $link := .url }}
|
|
{{ if not (strings.HasPrefix .url "http") }}
|
|
{{ $link = (.url | absURL) }}
|
|
{{ end }}
|
|
<a href="{{ $link }}">{{ .title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
<div class="col-12 col-md-4 text-center text-md-right">
|
|
<a href="/" aria-label="Velero homepage"><img src="/img/{{ .Site.Params.logo }}" class="logo"
|
|
alt="Homepage"/></a>
|
|
</div>
|
|
</div>
|
|
{{/* CNCF affiliation block — required by CNCF Website Guidelines.
|
|
Change `sandbox project` -> `project` when Velero is promoted to
|
|
incubating or graduated. See
|
|
https://github.com/cncf/foundation/blob/main/policies-guidance/website-guidelines.md */}}
|
|
<div class="row align-items-center cncf-affiliation mt-4">
|
|
<div class="col text-center">
|
|
<p class="mb-2">
|
|
We are a
|
|
<a href="{{ .Site.Params.footer.cncf_link }}">Cloud Native Computing Foundation</a>
|
|
{{ with .Site.Params.footer.cncf_status }}{{ . }} {{ end }}project.
|
|
</p>
|
|
<a href="{{ .Site.Params.footer.cncf_link }}" aria-label="Cloud Native Computing Foundation">
|
|
<img src="/img/{{ .Site.Params.cncf_logo }}"
|
|
alt="Cloud Native Computing Foundation logo"
|
|
class="cncf-logo"
|
|
style="max-height: 64px;"/>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row align-items-center">
|
|
<div class="col copyright text-center mt-4">
|
|
<p class="mb-1">Copyright {{ .Site.Params.footer.copyright_holder }}.</p>
|
|
<p class="mb-0">
|
|
For website terms of use, trademark policy and other project policies please see
|
|
<a href="{{ .Site.Params.footer.lf_policies_link }}">{{ .Site.Params.footer.lf_policies_link }}</a>.
|
|
</p>
|
|
<p class="mt-2 small">
|
|
This website does not use cookies or other tracking technology.
|
|
This site is powered by <a href="https://www.netlify.com">Netlify</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- JS -->
|
|
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js"
|
|
integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
|
|
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
|
|
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" crossorigin="anonymous"></script>
|
|
|
|
<script src="/js/jquery.matchHeight.js?{{ now.Unix }}"></script>
|
|
<script src="/js/scripts.js?{{ now.Unix }}"></script>
|