-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from valkey-io/main
Move to Prod: Participants page, typos, upcased URLs
- Loading branch information
Showing
15 changed files
with
157 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
- name: Percona | ||
link: https://learn.percona.com/percona-support-for-valkey | ||
image: | ||
path: /img/percona.svg | ||
alt: Percona Logo | ||
company: > | ||
Percona is a world-class open source database software, support, and services company. | ||
The organization is dedicated to helping businesses ensure their databases — and the applications that depend on them — are secure, compliant, performant, and highly available. | ||
For more information, visit [www.percona.com](http://www.percona.com/) | ||
offering: > | ||
Valkey expertise, where and when you need it. | ||
From day-to-day operational support to hands-on assistance for complex projects, Percona can meet your Valkey database needs. | ||
We’ll soon be offering support, managed services, and project-based consulting, so together, we can tackle any challenge and continue to keep open source, open. | ||
- name: UpCloud | ||
link: https://upcloud.com/valkey | ||
image: | ||
path: /img/upcloud.svg | ||
alt: UpCloud Logo | ||
company: > | ||
UpCloud is a leading European cloud provider with a global platform spanning four continents and 13 data centres. | ||
Founded in 2012 and headquartered in Helsinki, Finland, our international team ensures uninterrupted services with a 100% SLA, empowering businesses worldwide to thrive with our reliable, cloud-native product portfolio. | ||
offering: > | ||
Valkey on UpCloud simplifies database management with a fully managed service hosted on our GDPR-compliant cloud. | ||
Enjoy seamless deployment, expert maintenance, and high performance with minimal downtime. | ||
Backed by UpCloud’s global reach, Valkey ensures reliability and scalability, freeing developers to focus on building great applications. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Custom front matter | ||
aliases = [ | ||
"/docs/topics/history/", | ||
"/about/" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
template: participants.html | ||
title: Participate with Valkey | ||
--- | ||
|
||
# Valkey Participants | ||
|
||
The Valkey project participants are a diverse group of organizations that have come together to maintain and contribute to the project. Valkey participants are more than vendors, they are dedicated to continuously strengthening the long-term health and viability of this project so that everyone can benefit from it. Since its inception Valkey has enjoyed steady adoption demonstrating the industry's desire for an open, community-driven database solution. We look forward to seeing our list of participants grow as more companies work on our project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{# adapted to Zola #} | ||
{% set pageurl = page.permalink | urlencode%} | ||
<div class="participants-container"><div id="participants-buttons"> | ||
<div class="new-participants" title="become a new participant" onclick="window.open('https://github.com/valkey-io/valkey-io.github.io/issues/new?assignees=&labels=participant%2C+untriaged&projects=&template=add_participant_form_template.md&title=%5BPARTICIPANT%5D');"></div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{% extends "right-aside.html" %} | ||
{% block subhead_content%} | ||
{% endblock subhead_content%} | ||
|
||
{% block main_content %} | ||
{{ page.content | safe }} | ||
|
||
{% include "includes/participants-buttons.html" %} | ||
|
||
{% set participants = load_data(path="/_data/participants.yml") %} | ||
<div class="participant-list"> | ||
{% for participant in participants %} | ||
<div class="participant-{{participant.name | lower() }}"> | ||
<a href="{{participant.link}}" class="logo"> | ||
<img src="{{participant.image.path}}" alt="{{participant.image.alt}}" /> | ||
</a> | ||
<h3>Valkey offering:</h3> | ||
{{ participant.offering | markdown | safe }} | ||
<h3>About the company:</h3> | ||
{{ participant.company | markdown | safe }} | ||
|
||
</div> | ||
{% endfor %} | ||
</div> | ||
{% endblock main_content %} |