init master server configuration

This commit is contained in:
ghost 2024-01-09 22:11:15 +02:00
parent 741f6a3227
commit acec164041
5 changed files with 29 additions and 6 deletions

View file

@ -31,12 +31,18 @@
{% block footer_container %}
<footer>
{% block footer_content %}
<div class="text-align-right">
<small>
{{ 'Powered by' | trans }}
<a href="https://github.com/YGGverse/HLState" target="_blank">HLState</a>
{% if app.masters %}
<small class="float-left">
<strong>{{ 'Master' | trans }}:</strong>
{% for i, master in app.masters | split(',') %}
{% if i %}&bull;{% endif %} {{ master }}
{% endfor %}
</small>
</div>
{% endif %}
<small class="float-right">
{{ 'Powered by' | trans }}
<a href="https://github.com/YGGverse/HLState" target="_blank">HLState</a>
</small>
{% endblock %}
</footer>
{% endblock %}