2025-01-30 12:07:59 +00:00
{% extends 'html.twig' %}
{% block html_head %}
{% include '_layout/meta.twig' %}
<link href="/vendor/fontawesome/css/all.min.css" type="text/css" rel="stylesheet">
<link href=" {{ asset ( 'misuzu.css' ) }} " type="text/css" rel="stylesheet">
{% if site_background is defined %}
2020-06-09 17:42:35 +00:00
<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 }} ');
2020-06-09 17:42:35 +00:00
}
</style>
2025-01-30 12:07:59 +00:00
{% endif %}
{% if site_logo is defined %}
2020-06-09 17:42:35 +00:00
<style>
:root {
--site-logo: url(' {{ site_logo }} ');
}
</style>
2025-01-30 12:07:59 +00:00
{% endif %}
2021-08-28 17:06:14 +00:00
{% endblock %}
2018-03-22 02:56:41 +00:00
2025-01-30 12:07:59 +00:00
{% set html_body_attrs = {
'class': 'main' ~ (site_background is defined ? (' ' ~ site_background.classNames('main--bg-%s')|join(' ')) : ''),
'style': global_accent_colour is defined ? ('--accent-colour: ' ~ global_accent_colour) : '',
} %}
2024-12-17 21:44:48 +00:00
2025-01-30 12:07:59 +00:00
{% block html_body %}
{% block main_header %}
{% include '_layout/header.twig' %}
{% endblock %}
<div class="main__wrapper">
<noscript>
<div class="warning">
<div class="warning__content"><strong>Significant parts of the site require JavaScript.</strong> If you have it turned off and something doesn't work, that's probably why!</div>
</div>
</noscript>
{% if globals .active_ban_info is not null %}
2023-07-26 18:19:48 +00:00
<div class="warning warning--red">
2020-06-09 17:42:35 +00:00
<div class="warning__content">
2024-11-30 04:09:29 +00:00
<p>You have been banned {% if globals .active_ban_info .permanent %} <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 .publicReason is not empty %}
2023-08-31 21:33:34 +00:00
<p>Reason: {{ globals .active_ban_info .publicReason }} </p>
2023-07-26 18:19:48 +00:00
{% endif %}
2018-12-28 05:03:42 +00:00
</div>
2020-06-09 17:42:35 +00:00
</div>
2025-01-30 12:07:59 +00:00
{% endif %}
2018-12-28 05:03:42 +00:00
2025-01-30 12:07:59 +00:00
{% block content %}
2024-01-30 23:47:02 +00:00
<div class="container">
2020-06-09 17:42:35 +00:00
This page is empty, populate it.
</div>
2025-01-30 12:07:59 +00:00
{% endblock %}
</div>
2018-03-22 02:56:41 +00:00
2025-01-30 12:07:59 +00:00
{% block main_footer %}
{% include '_layout/footer.twig' %}
{% endblock %}
2018-04-23 03:00:55 +00:00
2025-01-30 12:07:59 +00:00
<script src="/vendor/highlightjs/highlight.min.js" type="text/javascript"></script>
<script src=" {{ asset ( 'misuzu.js' ) }} " type="text/javascript"></script>
{% endblock %}