Web Stats for Half-Life Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="description" content="{% block head_meta_description %}{{ app.meta.description }}{% endblock %}" />
|
|
|
|
<meta name="keywords" content="{% block head_meta_keywords %}{{ app.meta.keywords }}{% endblock %}" />
|
|
|
|
<title>{% block head_title_content %}{{ app.meta.title }}{% endblock %}</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url('main_index') }}css/default.css?{{ app.version }}"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block header_container %}
|
|
|
|
<header>
|
|
|
|
{% block header_content %}
|
|
|
|
<h1 class="text-align-right">
|
|
|
|
{{ app.name }}
|
|
|
|
</h1>
|
|
|
|
{% endblock %}
|
|
|
|
</header>
|
|
|
|
{% endblock %}
|
|
|
|
{% block main_container %}
|
|
|
|
<main>
|
|
|
|
{% block main_content %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|
|
|
|
{% 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>
|
|
|
|
</small>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
</footer>
|
|
|
|
{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|