2018-03-22 02:56:41 +00:00
<!doctype html>
<html>
<head>
2023-07-15 23:58:17 +00:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-08-15 01:12:58 +00:00
{% include '_layout/meta.twig' %}
2023-07-15 23:58:17 +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">
<link href=" {{ assets .mszcss | default ( ) }} " type="text/css" rel="stylesheet">
2020-06-09 17:42:35 +00:00
{% if site_background is defined %}
<style>
:root {
--background-width: {{ site_background .width }} px;
--background-height: {{ site_background .height }} px;
--background-image: url(' {{ site_background .url | raw }} ');
}
</style>
{% endif %}
{% if site_logo is defined %}
<style>
:root {
--site-logo: url(' {{ site_logo }} ');
}
</style>
{% endif %}
2018-03-22 02:56:41 +00:00
</head>
2020-06-07 20:37:03 +00:00
<body class="main {% if site_background is defined %} {{ site_background .classNames ( 'main--bg-%s' ) | join ( ' ' ) }} {% endif %} "
2019-12-09 02:41:34 +00:00
style=" {% if global_accent_colour is defined %} {{ global_accent_colour | html_colour ( '--accent-colour' ) }} {% endif %} " id="container">
2021-08-28 17:06:14 +00:00
{% block main_header %}
2020-06-09 17:42:35 +00:00
{% include '_layout/header.twig' %}
2021-08-28 17:06:14 +00:00
{% endblock %}
2018-03-22 02:56:41 +00:00
2018-08-14 20:03:35 +00:00
<div class="main__wrapper">
2023-07-26 18:19:48 +00:00
{% if current_user_ban_info is defined and current_user_ban_info is not null %}
<div class="warning warning--red">
2020-06-09 17:42:35 +00:00
<div class="warning__content">
2023-07-26 18:19:48 +00:00
<p>You have been banned {% if current_user_ban_info .isPermanent %} <strong>permanently</strong> {% else %} for <strong title=" {{ current_user_ban_info .expiresTime | date ( 'r' ) }} "> {{ current_user_ban_info .remainingString }} </strong> {% endif %} since <strong><time datetime=" {{ current_user_ban_info .createdTime | date ( 'c' ) }} " title=" {{ current_user_ban_info .createdTime | date ( 'r' ) }} "> {{ current_user_ban_info .createdTime | time_format }} </time></strong>.</p>
{% if current_user_ban_info .hasPublicReason %}
<p>Reason: {{ current_user_ban_info .publicReason }} </p>
{% endif %}
2018-12-28 05:03:42 +00:00
</div>
2020-06-09 17:42:35 +00:00
</div>
{% endif %}
2018-12-28 05:03:42 +00:00
2020-06-09 17:42:35 +00:00
{% block content %}
<div class="container" style="margin: 2px 0; padding: 2px 5px;">
This page is empty, populate it.
</div>
{% endblock %}
2018-08-14 20:03:35 +00:00
</div>
2018-03-22 02:56:41 +00:00
2021-08-28 17:06:14 +00:00
{% block main_footer %}
2020-06-09 17:42:35 +00:00
{% include '_layout/footer.twig' %}
2021-08-28 17:06:14 +00:00
{% endblock %}
2018-04-23 03:00:55 +00:00
2020-05-11 01:17:05 +00:00
<script type="text/javascript">
window.addEventListener('DOMContentLoaded', function() { Misuzu(); });
</script>
2020-05-09 22:22:07 +00:00
<script src="/vendor/highlightjs/highlight.pack.js" type="text/javascript"></script>
2023-07-15 23:58:17 +00:00
<script src=" {{ assets .mszjs | default ( ) }} " type="text/javascript"></script>
2018-03-22 02:56:41 +00:00
</body>
</html>