2022-09-13 13:14:49 +00:00
<!doctype html>
<html>
<head>
2023-07-17 14:37:39 +00:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-09-13 13:14:49 +00:00
{% include '_layout/meta.twig' %}
2023-07-17 14:37:39 +00:00
<link href="/vendor/fontawesome/css/all.min.css" type="text/css" rel="stylesheet">
<link href="/vendor/highlightjs/styles/tomorrow-night.css" type="text/css" rel="stylesheet">
2023-08-31 21:33:34 +00:00
<link href=" {{ globals .assets .mszcss | default ( ) }} " type="text/css" rel="stylesheet">
2022-09-13 13:14:49 +00:00
{% if site_background is defined %}
<style>
:root {
--background-width: {{ site_background .width }} px;
--background-height: {{ site_background .height }} px;
2023-09-08 20:40:48 +00:00
--background-image: url(' {{ site_background_url | raw }} ');
2022-09-13 13:14:49 +00:00
}
</style>
{% endif %}
{% if site_logo is defined %}
<style>
:root {
--site-logo: url(' {{ site_logo }} ');
}
</style>
{% endif %}
</head>
<body class="main {% if site_background is defined %} {{ site_background .classNames ( 'main--bg-%s' ) | join ( ' ' ) }} {% endif %} "
2023-08-31 14:55:39 +00:00
style=" {% if global_accent_colour is defined %} --accent-colour: {{ global_accent_colour }} {% endif %} " id="container">
2022-09-13 13:14:49 +00:00
{% block main_header %}
{% include '_layout/header.twig' %}
{% endblock %}
<div class="main__wrapper">
2023-08-31 21:33:34 +00:00
{% if globals .active_ban_info is not null %}
2023-07-26 18:19:46 +00:00
<div class="warning warning--red">
2022-09-13 13:14:49 +00:00
<div class="warning__content">
2023-08-31 21:33:34 +00:00
<p>You have been banned {% if globals .active_ban_info .isPermanent %} <strong>permanently</strong> {% else %} for <strong title=" {{ globals .active_ban_info .expiresTime | date ( 'r' ) }} "> {{ globals .active_ban_info .remainingString }} </strong> {% endif %} since <strong><time datetime=" {{ globals .active_ban_info .createdTime | date ( 'c' ) }} " title=" {{ globals .active_ban_info .createdTime | date ( 'r' ) }} "> {{ globals .active_ban_info .createdTime | time_format }} </time></strong>.</p>
{% if globals .active_ban_info .hasPublicReason %}
<p>Reason: {{ globals .active_ban_info .publicReason }} </p>
2023-07-26 18:19:46 +00:00
{% endif %}
2022-09-13 13:14:49 +00:00
</div>
</div>
{% endif %}
{% block content %}
<div class="container" style="margin: 2px 0; padding: 2px 5px;">
This page is empty, populate it.
</div>
{% endblock %}
</div>
{% block main_footer %}
{% include '_layout/footer.twig' %}
{% endblock %}
<script type="text/javascript">
window.addEventListener('DOMContentLoaded', function() { Misuzu(); });
</script>
<script src="/vendor/highlightjs/highlight.pack.js" type="text/javascript"></script>
2023-08-31 21:33:34 +00:00
<script src=" {{ globals .assets .mszjs | default ( ) }} " type="text/javascript"></script>
2022-09-13 13:14:49 +00:00
</body>
</html>