Skip to content

Commit

Permalink
Merge pull request #156 from koor-tech/add_support_providers_page
Browse files Browse the repository at this point in the history
  • Loading branch information
galexrt authored Mar 13, 2024
2 parents d840d88 + 34e4c5f commit c68c5ef
Show file tree
Hide file tree
Showing 8 changed files with 190 additions and 590 deletions.
5 changes: 3 additions & 2 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@
<span>Community</span>
<a href="{{ slackLink }}">Slack</a>
<a href="{{ twitterLink }}">Twitter</a>
<a href="{{ forumLink }}">Forum</a>
<a href="{{ discussionLink }}">Discussions</a>
<a href="{{ blogLink }}">Blog</a>
</div>
<div class="col_sm-12">
<span>Contact</span>
<a href="{{ discussionLink }}">Discussion</a>
<a href="{{ discussionLink }}">Discussions</a>
<a href="{{ featureRequestLink }}">Feature request</a>
<a href="{{ newIssueLink }}">New Issue</a>
</div>
<div class="col_sm-12">
<span>Top Contributors</span>
Expand Down
7 changes: 4 additions & 3 deletions _includes/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<div class="logo">
<a href="{{ "/" | relative_url }}"><img src="{{ "/images/rook-logo.svg" | relative_url }}"/></a>
</div>
<div
<div
class="hamburger-controls"
onclick="if (document.body.classList.contains('menu-open')) { document.body.classList.remove('menu-open') } else { document.body.classList.add('menu-open') }; return false;">
onclick="if (document.getElementById('navigation').classList.contains('menu-open')) { document.getElementById('navigation').classList.remove('menu-open') } else { document.getElementById('navigation').classList.add('menu-open') }; return false;">
<span></span> <span></span> <span></span>
</div>
<ul class="links">
Expand All @@ -15,11 +15,12 @@
<div class="dropdown-content">
<a href="{{ githubLink }}">GitHub</a>
<a href="{{ slackLink }}">Slack</a>
<a href="{{ forumLink }}">Forum</a>
<a href="{{ discussionLink }}">Discussions</a>
<a href="{{ twitterLink }}">Twitter</a>
</div>
</li>
<li><a href="{{ blogLink }}">Blog</a></li>
<li><a href="{{ "/support" | relative_url }}">Support</a></li>
<li><a class="button small" href="{{ gettingStartedLink }}">Get Started</a></li>
</ul>
</div>
Expand Down
13 changes: 7 additions & 6 deletions _includes/values.inc
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{% assign blogLink = '//blog.rook.io/' %}
{% assign cloudicalLink = '//cloudical.io/' %}
{% assign cncfLink = '//www.cncf.io' %}
{% assign communityMeetingLink = '//github.com/rook/rook#community-meeting' %}
{% assign contributeLink = '//github.com/rook/rook/blob/master/CONTRIBUTING.md#how-to-contribute' %}
{% assign discussionLink = '//github.com/rook/rook/discussions' %}
{% assign featureRequestLink = '//github.com/rook/rook/issues' %}
{% assign forumLink = '//groups.google.com/forum/#!forum/rook-dev' %}
{% assign newIssueLink = '//github.com/rook/rook/issues/new/choose' %}
{% assign gettingStartedLink = '/docs/rook/latest-release/Getting-Started/quickstart/' %}
{% assign githubLink = '//github.com/rook/rook' %}
{% assign latestDocs = '/docs/rook/latest-release/' %}
{% assign cybozuLink = '//cybozu.com' %}
{% assign redHatLink = '//www.redhat.com/en/technologies/cloud-computing/openshift-data-foundation' %}
{% assign slackLink = '//slack.rook.io/' %}
{% assign twitterLink = '//twitter.com/rook_io' %}
{% assign upboundLink = '//upbound.io' %}

{% assign cloudicalLink = '//cloudical.io/' %}
{% assign cncfLink = '//www.cncf.io' %}
{% assign cybozuLink = '//cybozu.com' %}
{% assign koorLink = '//koor.tech' %}
{% assign redHatLink = '//www.redhat.com/en/technologies/cloud-computing/openshift-data-foundation' %}
{% assign upboundLink = '//upbound.io' %}
Loading

0 comments on commit c68c5ef

Please sign in to comment.