Merge pull request #1681 from jonasrosland/add-survey
Add link to the Velero user surveypull/1684/head
commit
c8bac5bfae
|
@ -9,6 +9,7 @@
|
|||
<li class="blog"><a href="/blog" title="Blog Posts">Blog</a></li>
|
||||
<li class="community"><a href="/community" title="Community">Community</a></li>
|
||||
<li class="resources"><a href="/resources" title="Resources">Resources</a></li>
|
||||
<li class="survey"><a href="/survey" title="Survey">Survey</a></li>
|
||||
</ul>
|
||||
<div class="nav-mobile-link">
|
||||
<a href="javascript:void(0);" id="nav-mobile-toggle"></a>
|
||||
|
|
|
@ -1,6 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% if page.name == "survey.md" %}
|
||||
<meta http-equiv="refresh" content="0; url={{ page.redirect.to }}" />
|
||||
<script type="text/javascript">
|
||||
window.location.href = "{{ page.redirect.to }}"
|
||||
</script>
|
||||
<title>Redirecting...</title>
|
||||
</head>
|
||||
<body>
|
||||
Redirecting to {{ page.redirect.to }}. If it doesn't load, click <a href="{{ page.redirect.to }}" />here</a>.
|
||||
</body>
|
||||
</html>
|
||||
{% endif %}
|
||||
{% if page.name != "survey" %}
|
||||
<meta http-equiv="refresh" content="0; url=/docs/{{ site.latest }}/{{ page.destination }}" />
|
||||
<script type="text/javascript">
|
||||
window.location.href = "/docs/{{ site.latest }}/{{ page.destination }}"
|
||||
|
@ -11,3 +24,5 @@
|
|||
Redirecting to {{ page.destination }}. If it doesn't load, click <a href="/docs/{{ site.latest }}/{{ page.destination }}" />here</a>.
|
||||
</body>
|
||||
</html>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
layout: page
|
||||
title: Survey
|
||||
redirect_to: https://buff.ly/2YYnEQX
|
||||
---
|
Loading…
Reference in New Issue