Open
Description
Problem
We have been using this theme since years and I just saw, that you finally released a v1 and we wanted to try it. Unfortunately we have added links to the menu by modifying _templates/layout.html
in the following way:
{% extends "!layout.html" %}
{% block menu %}
<p class="link caption"><span class="link caption-text">Documentation</span></p>
{{ super() }}
<br />
<p class="link caption"><span class="link caption-text">Links</span></p>
<a href="https://github.com">GitHub</a>
{% endblock %}
This was totally fine with v0.5
but with v1
all links get a button with no function added to the text:
<a href="https://github.com"><button class="toctree-expand" title="Open/close menu"></button>GitHub</a>
Is there a way to reproduce the old behavior?