update template

This commit is contained in:
yggverse 2026-03-05 17:58:45 +02:00
parent 204b64a4f9
commit f25b0b8124

View file

@ -35,6 +35,7 @@
h2 { h2 {
font-size: 14px; font-size: 14px;
margin-bottom: 8px;
} }
h3 { h3 {
@ -86,6 +87,14 @@
overflow: hidden; overflow: hidden;
position: relative; position: relative;
} }
footer ul li.offline::marker {
color: var(--color-error)
}
footer ul li.online::marker {
color: var(--color-success)
}
</style> </style>
</head> </head>
<body> <body>
@ -96,7 +105,10 @@
</div> </div>
<div class="float-right"> <div class="float-right">
<strong> <strong>
<a href="/">{{ title }}</a> <a href="/">{{ title }}</a> |
<a href="https://store.steampowered.com/app/70/HalfLife/" target="_blank" title="v{{ version }}">Game</a> |
<a href="https://github.com/FWGS/xash3d-fwgs" target="_blank" title="v{{ version }}">Xash3D</a> |
<a href="https://github.com/YGGverse/hlstate-rs" target="_blank" title="v{{ version }}">GitHub</a>
</strong> </strong>
</div> </div>
</header> </header>
@ -104,15 +116,14 @@
{% block content %}{% endblock content %} {% block content %}{% endblock content %}
</main> </main>
<footer> <footer>
<small> <h2>Master</h2>
{% if masters %} {% if masters %}
<strong>Master:</strong> <ul>
{% for master in masters %} {% for master in masters %}
{{ master }} &bull; <li class="online">{{ master }}</li>
{% endfor %} {% endfor %}
<ul>
{% endif %} {% endif %}
<a href="https://github.com/YGGverse/hlstate-rs" target="_blank" title="v{{ version }}">HLState</a>
</small>
</footer> </footer>
</body> </body>
</html> </html>