[docs] guide: document current Looking Glass features

This commit is contained in:
Geoffrey McRae
2026-08-11 19:18:17 +10:00
parent 45429681a0
commit 33bdc611d8
36 changed files with 2356 additions and 1328 deletions

20
doc/templates/footer.html vendored Normal file
View File

@@ -0,0 +1,20 @@
{% extends "!footer.html" %}
{% block extrafooter %}
{{ super() }}
{%- if hasdoc(pagename) and show_source %}
{%- if source_url_prefix %}
<p>
<a href="{{ source_url_prefix }}{{ pagename }}{{ page_source_suffix }}">
{{ _('View page source') }}
</a>
</p>
{%- elif has_source and sourcename %}
<p>
<a href="{{ pathto('_sources/' + sourcename, true)|e }}" rel="nofollow">
{{ _('View page source') }}
</a>
</p>
{%- endif %}
{%- endif %}
{% endblock %}