{% include '_layout/meta.twig' %} {% if site_background is defined %} {% endif %} {% if site_logo is defined %} {% endif %} {% 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': 'Twitter', 'url': 'https://twitter.com/flashiinet', }, ], }, { 'title': 'News', 'url': url('news-index'), }, { 'title': 'Forum', 'url': url('forum-index'), 'menu': [ { 'title': 'Leaderboard', 'url': url('forum-leaderboard'), 'display': current_user.legacyPerms.forum|default(0)|perms_check(constant('MSZ_PERM_FORUM_VIEW_LEADERBOARD')), }, ], }, { 'title': 'Chat', 'url': 'https://chat.flashii.net', }, ] %} {% 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 %}
{% if current_user.hasActiveWarning|default(false) %}
You have been {{ current_user.isSilenced ? 'silenced' : 'banned' }} {% if current_user.isActiveWarningPermanent %}permanently{% else %}until {{ current_user.activeWarningExpiration|date('r') }}{% endif %}, view the account standing table on your profile to view why.
{% endif %} {% block content %}
This page is empty, populate it.
{% endblock %}
{% block main_footer %} {% include '_layout/footer.twig' %} {% endblock %}