Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to Prod: removal of docs review, matrix chat, author styles, new top nav #151

Merged
merged 8 commits into from
Oct 7, 2024
Merged
12 changes: 0 additions & 12 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,7 @@ review_list = [
"/topics/internals/",
"/topics/latency/",
"/topics/lua-api/",
"/topics/modules-blocking-ops/",
"/topics/modules-intro/",
"/topics/pipelining/",
"/topics/programmability/",
"/topics/protocol/",
"/topics/pubsub/",
"/topics/rdd/",
"/topics/replication/",
"/topics/security/",
"/topics/sentinel-clients/",
"/topics/sentinel/",
"/topics/transactions/",
"/topics/cluster-spec/",
"/topics/history/"
]

Expand Down
2 changes: 1 addition & 1 deletion content/connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ aliases:

You can connect with Valkey in many ways.

* If you have a **question** about Valkey, head over to the project [GitHub discussions](https://github.com/orgs/valkey-io/discussions).
* If you have a **question** about Valkey, head over to the project [GitHub discussions](https://github.com/orgs/valkey-io/discussions) or [Matrix chat](https://matrix.to/#/#valkey:matrix.org).
* If you’ve found a **bug** in Valkey, file an bug issue on [valkey-io/valkey](https://github.com/valkey-io/valkey/issues/new?assignees=&labels=&projects=&template=bug_report.md&title=%5BBUG%5D)
* If you want to suggest a **new feature** for Valkey, you feature request issue on [valkey/valkey-io](https://github.com/valkey-io/valkey/issues/new?assignees=&labels=&projects=&template=feature_request.md&title=%5BNEW%5D)
* You can connect on the following **social media** platforms
Expand Down
21 changes: 17 additions & 4 deletions templates/author-page.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
{% extends "default.html" %}
{% extends "right-aside.html" %}

{% block content %}
{{ page.content | safe }}
{% endblock content %}
{% block main_content %}
{% set author_page = page %}
{% include "includes/author_panel.html" %}
{% endblock main_content %}

{% block related_content %}
<h4>Other Authors</h4>
{% set authors_section = get_section(path="authors/_index.md") %}
<ul>
{% for author in authors_section.pages %}
{% if page.title != author.title %}
<li><a href="{{ author.permalink | safe }}">{{ author.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
{% endblock related_content %}
5 changes: 3 additions & 2 deletions templates/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@
<a role="menuitem" href="/download/">Download</a>
<a role="menuitem" href="/docs/">Documentation</a>
<a role="menuitem" href="/commands/">Commands</a>
<a role="menuitem" href="/blog/">Blog</a>
<div class="has-submenu">
<span>Community</span>
<div class="submenu">
<a role="menuitem" href="/blog/">Blog</a>
<a role="menuitem" href="https://github.com/orgs/valkey-io/discussions">Forum</a>
<a role="menuitem" target="_blank" href="https://github.com/orgs/valkey-io/discussions">Forum</a>
<a role="menuitem" href="/connect/">Connect</a>
</div>
</div>
</nav>
Expand Down