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">
<link href=" {{ 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;
--background-image: url(' {{ site_background .url | raw }} ');
}
</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 %} "
style=" {% if global_accent_colour is defined %} {{ global_accent_colour | html_colour ( '--accent-colour' ) }} {% endif %} " id="container">
{% set site_menu = [
{
'title': 'Home',
'url': url('index'),
'menu': [
{
'title': 'Members',
'url': url('user-list'),
'display': current_user is defined,
},
{
'title': 'Changelog',
'url': url('changelog-index'),
},
{
'title': 'Contact',
'url': url('info', { 'title': 'contact'}),
},
{
'title': 'Rules',
'url': url('info', { 'title': 'rules'}),
},
],
},
{
'title': 'News',
'url': url('news-index'),
},
{
'title': 'Forum',
'url': url('forum-index'),
'menu': [
{
'title': 'Leaderboard',
'url': url('forum-leaderboard'),
2023-07-29 18:15:30 +00:00
'display': can_view_forum_leaderboard,
2022-09-13 13:14:49 +00:00
},
],
},
{
'title': 'Chat',
2023-01-31 16:21:19 +00:00
'url': globals.site_chat|default(''),
'display': globals.site_chat is defined and globals.site_chat is not empty,
2022-09-13 13:14:49 +00:00
},
] %}
{% set user_menu =
current_user is defined
? [
{
'title': 'Profile',
'url': url('user-profile', { 'user': current_user.id}),
'icon': 'fas fa-user fa-fw',
},
{
'title': 'Settings',
'url': url('settings-index'),
'icon': 'fas fa-cog fa-fw',
},
{
'title': 'Search',
'url': url('search-index'),
'icon': 'fas fa-search fa-fw',
},
{
'title': 'Return to Site',
'url': site_link|default(url('index')),
'icon': 'fas fa-door-open fa-fw',
'display': has_manage_access and manage_menu is defined
},
{
'title': 'Manage',
'url': manage_link|default(url('manage-index')),
'icon': 'fas fa-door-closed fa-fw',
'display': has_manage_access and manage_menu is not defined
},
{
'title': 'Log out',
'url': url('auth-logout'),
'icon': 'fas fa-sign-out-alt fa-fw',
},
]
: [
{
'title': 'Register',
'url': url('auth-register'),
'icon': 'fas fa-user-plus fa-fw',
},
{
'title': 'Log in',
'url': url('auth-login'),
'icon': 'fas fa-sign-in-alt fa-fw',
},
]
%}
{% block main_header %}
{% include '_layout/header.twig' %}
{% endblock %}
<div class="main__wrapper">
2023-07-26 18:19:46 +00:00
{% if current_user_ban_info is defined and current_user_ban_info is not null %}
<div class="warning warning--red">
2022-09-13 13:14:49 +00:00
<div class="warning__content">
2023-07-26 18:19:46 +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 %}
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-07-17 14:37:39 +00:00
<script src=" {{ assets .mszjs | default ( ) }} " type="text/javascript"></script>
2022-09-13 13:14:49 +00:00
</body>
</html>