mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
moved notice-bottom in footer, added footernav
This commit is contained in:
@@ -56,6 +56,9 @@
|
|||||||
<footer>
|
<footer>
|
||||||
{% block footer %}
|
{% block footer %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
<nav aria-label="{% trans "Footer Navigation" %}">
|
||||||
|
{% block footernav %}
|
||||||
|
{% endblock %}
|
||||||
{% if footer_text %}
|
{% if footer_text %}
|
||||||
{{ footer_text }}
|
{{ footer_text }}
|
||||||
·
|
·
|
||||||
@@ -65,6 +68,7 @@
|
|||||||
·
|
·
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% include "pretixpresale/base_footer.html" %}
|
{% include "pretixpresale/base_footer.html" %}
|
||||||
|
</nav>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
{% include "pretixpresale/fragment_modals.html" %}
|
{% include "pretixpresale/fragment_modals.html" %}
|
||||||
|
|||||||
@@ -123,6 +123,8 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block footer %}
|
||||||
{% if request.event.settings.banner_text_bottom %}
|
{% if request.event.settings.banner_text_bottom %}
|
||||||
<div class="site-notice-bottom">
|
<div class="site-notice-bottom">
|
||||||
{{ request.event.settings.banner_text_bottom|rich_text }}
|
{{ request.event.settings.banner_text_bottom|rich_text }}
|
||||||
@@ -144,7 +146,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block footer %}
|
{% block footernav %}
|
||||||
{% if request.event.settings.contact_mail %}
|
{% if request.event.settings.contact_mail %}
|
||||||
<a href="mailto:{{ request.event.settings.contact_mail }}">{% trans "Contact event organizer" %}</a> ·
|
<a href="mailto:{{ request.event.settings.contact_mail }}">{% trans "Contact event organizer" %}</a> ·
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -20,8 +20,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
|
}
|
||||||
|
footer nav {
|
||||||
|
text-align: center;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
.js-only {
|
.js-only {
|
||||||
|
|||||||
Reference in New Issue
Block a user