hlstate-rs/crates/httpd/templates/index.html.tera
2026-03-05 18:00:30 +02:00

15 lines
No EOL
360 B
Text

{% extends "layout" %}
{% block content %}
<h2>Game</h2>
{% if servers %}
{% for server in servers %}
<div>
<h2><a href="{{ server.host }}">{{ server.name }}</a></h2>
</div>
{% endfor %}
{% else %}
<div>
<p>Nobody.</p>
</div>
{% endif %}
{% endblock content %}