2018-03-22 02:56:41 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-08-15 03:12:58 +02:00
{% include '_layout/meta.twig' %}
2018-07-21 18:01:36 +02:00
<link href=" {{ '/css/libraries.css' | asset_url }} " rel="stylesheet">
2018-10-29 18:55:10 +01:00
<link href=" {{ '/css/style.css' | asset_url }} " rel="stylesheet">
2018-10-27 20:50:34 +02:00
{% if site_background is defined %}
2018-09-16 03:37:32 +02:00
<style>
:root {
2018-10-27 20:50:34 +02:00
--background-width: {{ site_background .width }} px;
--background-height: {{ site_background .height }} px;
--background-image: url(' {{ site_background .url | raw }} ');
2018-09-16 03:37:32 +02:00
}
</style>
{% endif %}
2019-01-17 02:46:19 +01:00
{% if site_logo is defined %}
<style>
:root {
--site-logo: url(' {{ site_logo }} ');
}
</style>
{% endif %}
2018-03-22 02:56:41 +00:00
</head>
2018-10-19 23:38:32 +02:00
2018-12-28 06:03:42 +01:00
<body class="main {% if site_background is defined %} {{ site_background .settings | bg_settings ( 'main--bg-%s' ) | join ( ' ' ) }} {% endif %} "
2018-10-22 00:11:14 +02:00
style=" {% if global_accent_colour is defined %} {{ global_accent_colour | html_colour ( '--accent-colour' ) }} {% endif %} ">
2019-01-18 17:00:34 +01:00
{% include '_layout/header.twig' %}
2018-03-22 02:56:41 +00:00
2018-08-14 22:03:35 +02:00
<div class="main__wrapper">
2018-12-28 06:03:42 +01:00
{% if current_user .ban_expiration | default ( 0 ) > 0 or current_user .silence_expiration | default ( 0 ) > 0 %}
<div class="warning">
<div class="warning__content">
2019-01-24 21:54:24 +01:00
You have been {{ current_user .silence_expiration ? 'silenced' : 'banned' }} until <strong> {{ ( current_user .silence_expiration ? current_user .silence_expiration : current_user .ban_expiration ) | date ( 'r' ) }} </strong>, view the account standing table on <a href=" {{ url ( 'user-account-standing' , { 'user' : current_user .user_id } ) }} " class="warning__link">your profile</a> to view why.
2018-12-28 06:03:42 +01:00
</div>
</div>
{% endif %}
2018-03-22 02:56:41 +00:00
{% block content %}
2019-03-02 23:49:10 +01:00
<div class="container" style="margin: 2px 0; padding: 2px 5px;">
This page is empty, populate it.
</div>
2018-03-22 02:56:41 +00:00
{% endblock %}
2018-08-14 22:03:35 +02:00
</div>
2018-03-22 02:56:41 +00:00
2018-10-22 22:23:56 +02:00
{% include '_layout/footer.twig' %}
2018-04-23 05:00:55 +02:00
2018-11-06 23:55:05 +01:00
{% if current_user is defined %}
2018-11-15 23:53:52 +01:00
<script type="application/json" id="js-user-info">
2018-11-06 23:55:05 +01:00
{{ current_user | json_encode | raw }}
</script>
{% endif %}
2018-12-30 23:07:32 +01:00
<script type="application/json" id="js-csrf-tokens">
{{ get_csrf_tokens ( ) | json_encode | raw }}
</script>
2019-01-24 21:54:24 +01:00
<script type="application/json" id="js-urls-list">
{{ url_list ( ) | json_encode | raw }}
</script>
2018-11-06 23:55:05 +01:00
<script src=" {{ '/js/libraries.js' | asset_url }} "></script>
<script src=" {{ '/js/misuzu.js' | asset_url }} "></script>
2018-03-22 02:56:41 +00:00
</body>
</html>