mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-28 03:23:52 -06:00
28 lines
1.3 KiB
HTML
28 lines
1.3 KiB
HTML
{% if not favicon %}
|
|
{% set favicon = 'favicon.ico' %}
|
|
{% endif %}
|
|
{%- extends "classic/layout.html" %}
|
|
|
|
{%- block footer %}
|
|
<div class="footer" role="contentinfo">
|
|
<div class="related" role="navigation" aria-label="related navigation">
|
|
<ul>
|
|
{%- if show_copyright %}
|
|
{%- if hasdoc('copyright') %}
|
|
{% trans path=pathto('copyright'), copyright=copyright|e %}<li class="left" style="margin-left: 10px">© <a href="{{ path }}">Copyright</a> {{ copyright }}.</li>{% endtrans %}
|
|
{%- else %}
|
|
{% trans copyright=copyright|e %}<li class="left" style="margin-left: 10px">© Copyright {{ copyright }}.</li>{% endtrans %}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
<li class="right" style="margin-right: 10px"><a href="genindex.html" title="General Index" accesskey="I">index</a></li>
|
|
{%- if next %}
|
|
<li class="right" ><a href="{{ next.link|e }}" title="{{ next.title|striptags|e }}" accesskey="N">next</a> |</li>
|
|
{%- endif %}
|
|
{%- if prev %}
|
|
<li class="right" ><a href="{{ prev.link|e }}" title="{{ prev.title|striptags|e }}" accesskey="P">previous</a> |</li>
|
|
{%- endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{%- endblock %}
|