velero/site/layouts/404.html

32 lines
785 B
HTML

{{ define "siteHeader" }}
{{ template "_default/site-header.html" . }}
{{ end }}
{{ define "title"}}
<h1>Page Not Found</h1>
{{ end }}
{{ define "content"}}
<p> Whoops! It looks like we weren't able to find that page.<p>
<ul>
<li> <a href="/docs/latest">Documentation</a></li>
<li> <a href="/plugins">Plugins</a></li>
<li> <a href="/blog">Blog</a></li>
<li> <a href="/community">Community</a></li>
<li> <a href="/resources">Resources</a></li>
</ul>
<p> If you can't find what you are looking for, try asking a question in our <a href="https://kubernetes.slack.com/messages/velero">slack channel</a> or <a href="https://github.com/vmware-tanzu/velero/issues">filing an issue.</a><p>
{{ end }}
{{ define "footer" }}
{{ template "_default/footer.html" . }}
{{ end }}