-
Notifications
You must be signed in to change notification settings - Fork 48
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 #151 from valkey-io/main
Move to Prod: removal of docs review, matrix chat, author styles, new top nav
- Loading branch information
Showing
4 changed files
with
21 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
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 |
---|---|---|
@@ -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 %} |
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