mirror of
https://github.com/pretix/pretix.git
synced 2026-05-10 16:04:02 +00:00
A11y improvements (#2081)
Co-authored-by: Raphael Michel <michel@rami.io> Co-authored-by: Raphael Michel <mail@raphaelmichel.de>
This commit is contained in:
committed by
GitHub
parent
cc13ca1c3f
commit
3dcfa57b70
@@ -57,17 +57,17 @@
|
||||
{% block footer %}
|
||||
{% endblock %}
|
||||
<nav aria-label="{% trans "Footer Navigation" %}">
|
||||
{% block footernav %}
|
||||
{% endblock %}
|
||||
{% if footer_text %}
|
||||
{{ footer_text }}
|
||||
·
|
||||
{% endif %}
|
||||
{% for f in footer %}
|
||||
<a href="{% safelink f.url %}" target="_blank" rel="noopener">{{ f.label }}</a>
|
||||
·
|
||||
{% endfor %}
|
||||
{% include "pretixpresale/base_footer.html" %} {# removing or hiding this might be in violation of pretix' license #}
|
||||
<ul>
|
||||
{% block footernav %}
|
||||
{% endblock %}
|
||||
{% if footer_text %}
|
||||
<li>{{ footer_text }}</li>
|
||||
{% endif %}
|
||||
{% for f in footer %}
|
||||
<li><a href="{% safelink f.url %}" target="_blank" rel="noopener">{{ f.label }}</a></li>
|
||||
{% endfor %}
|
||||
{% include "pretixpresale/base_footer.html" %} {# removing or hiding this might be in violation of pretix' license #}
|
||||
</ul>
|
||||
</nav>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user