mirrormanager-rocky/templates/rocky/maps.html
2024-08-29 19:13:29 -04:00

15 lines
473 B
HTML

{% extends "master.html" %}
{% block title %}Map{% endblock %}
{% block tag %}maps{% endblock %}
{% block content %}
<h1>Map</h1>
{%- if config['SHOW_MAPS'] -%}
Map of all public mirrors - <a href="{{url_for('base.maps_interactive')}}">Interactive Map</a>
<img src="{{url_for('base.index')}}map/{{ config['STATIC_MAP'] }}" border="0" alt="alt" class="centered"/>
{%- else -%}
Actually, this is disabled and you should not be here. Go away!
{%- endif -%}
{%- endblock -%}