mirror of
https://github.com/YGGverse/hlstate-rs.git
synced 2026-03-31 17:15:37 +00:00
14 lines
No EOL
342 B
Text
14 lines
No EOL
342 B
Text
{% extends "layout" %}
|
|
{% block content %}
|
|
{% 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 %} |