32 lines
905 B
Twig
32 lines
905 B
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<title>
|
|
{% block title %}{{ trans('setup.wizard.master.title') }}{% endblock %}
|
|
</title>
|
|
{% for style in styles %}
|
|
<link rel="stylesheet" href="{{ style }}">
|
|
{% endfor %}
|
|
</head>
|
|
|
|
<body class="container">
|
|
<p id="logo">
|
|
<a href="https://github.com/bs-community/blessing-skin-server" tabindex="-1">
|
|
Blessing Skin Server
|
|
</a>
|
|
</p>
|
|
<h1>
|
|
{% block subtitle %}{{ block('title') }}{% endblock %}
|
|
{{ include('errors.languages') }}
|
|
</h1>
|
|
{% block content %}{% endblock %}
|
|
{% for script in scripts %}
|
|
<script src="{{ script }}"></script>
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|