django-site/main/templates/main/servers.html
2023-01-30 12:09:32 +08:00

34 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'main/temp.html' %}
{% load static %}
{% block maincontent %}
<section class="main-content servers-main-content" id="main-content">
<h1 class="page-title">У нас имеются следующие сервера:</h1>
<section class="server-temp">
<h2 class="server-name">Minecraft 1.16.1 Vanilla</h2>
<h3 class="server-ips">IP: 176.114.129.4:25566</h3>
<img class="minecraft-vanilla" src="{% static 'main/src/img/minecraft_vanilla.jpg' %}">
<!--<section class="image-content">
</section>-->
</section>
<br>
<br>
<section class="server-temp">
<h2 class="server-name">Minecraft 1.16.5 RagnaMod VI</h2>
<h3 class="server-ips">IP: 176.114.129.4:25565</h3>
<img class="ragnamod" src="{% static 'main/src/img/ragnamod.jpg' %}">
<!--<section class="image-content">
</section>-->
</section>
<br>
<br>
<section class="server-temp">
<h2 class="server-name">Project Zomboid</h2>
<h3 class="server-ips">IP: 176.114.129.4:16261</h3>
<img class="zomboid" src="{% static 'main/src/img/zomboid.jpg' %}">
<!--<section class="image-content">
</section>-->
</section>
</section>
{% endblock %}
{% block titletext %}Dhaverd - Servers{% endblock %}