summaryrefslogtreecommitdiffstats
path: root/docs/_templates/sidebar/brand.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_templates/sidebar/brand.html')
-rw-r--r--docs/_templates/sidebar/brand.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/_templates/sidebar/brand.html b/docs/_templates/sidebar/brand.html
new file mode 100644
index 0000000..f6e47b1
--- /dev/null
+++ b/docs/_templates/sidebar/brand.html
@@ -0,0 +1,23 @@
+<a class="sidebar-brand{% if logo %} centered{% endif %}" href="{{ pathto(master_doc) }}">
+ {% block brand_content %}
+ {%- if logo_url %}
+ <div class="sidebar-logo-container">
+ <img class="sidebar-logo" src="{{ logo_url }}" alt="Takahē"/>
+ </div>
+ {%- endif %}
+ {%- if theme_light_logo and theme_dark_logo %}
+ <div class="sidebar-logo-container">
+ <img class="sidebar-logo only-light" src="{{ pathto('_static/' + theme_light_logo, 1) }}" alt="Light Logo"/>
+ <img class="sidebar-logo only-dark" src="{{ pathto('_static/' + theme_dark_logo, 1) }}" alt="Dark Logo"/>
+ </div>
+ {%- endif %}
+ {% endblock brand_content %}
+ </a>
+<div class="sidebar-tree" style="margin-top:0">
+ <ul>
+ <li class="toctree-l1"><a class="reference" href="https://jointakahe.org">Homepage</a></li>
+ <li class="toctree-l1"><a class="reference" href="https://takahe-server.readthedocs.io/">Documentation</a></li>
+ <li class="toctree-l1"><a class="reference" href="https://github.com/jointakahe/takahe">GitHub</a></li>
+ <li class="toctree-l1"><a class="reference" href="https://discord.gg/qvQ39tAMvf">Discord</a></li>
+ </ul>
+</div>