mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Use an HTML list for custom menu entries in documentation
For compatibility with sphinx_rtd_theme 1.0, which otherwise renders the entries with buttons.
This commit is contained in:
parent
49d994d7cc
commit
119f6a961e
1 changed files with 6 additions and 4 deletions
|
|
@ -2,8 +2,10 @@
|
|||
|
||||
{% block menu %}
|
||||
{{ super() }}
|
||||
<a href="{{ pathto('genindex') }}">Index</a>
|
||||
<hr>
|
||||
<a href="https://github.com/linkchecker/linkchecker/blob/master/doc/changelog.txt">Change Log</a>
|
||||
<a href="https://github.com/linkchecker/linkchecker/issues/">Issue Tracker</a>
|
||||
<ul>
|
||||
<li><a href="{{ pathto('genindex') }}">Index</a></li>
|
||||
<li><hr></li>
|
||||
<li><a href="https://github.com/linkchecker/linkchecker/blob/master/doc/changelog.txt">Change Log</a></li>
|
||||
<li><a href="https://github.com/linkchecker/linkchecker/issues/">Issue Tracker</a></li>
|
||||
</ul>
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue