{% extends 'home/master.twig' %} {% from 'macros.twig' import container_title %} {% from 'news/macros.twig' import news_preview %} {% from 'changelog/macros.twig' import changelog_listing %} {% from 'home/macros.twig' import chat_quote_display %} {% set canonical_url = '/' %} {% block content %}
{% if chat_quote is defined and chat_quote is iterable and chat_quote|length > 0 %}
{{ container_title(' Chat quote from ' ~ (chat_quote[0].quote_timestamp|date('Y-m-d'))) }} {{ chat_quote_display(chat_quote) }}
{% endif %}
{{ container_title(' Statistics') }}
Users
{{ statistics.users.all|number_format }}
Comments
{{ statistics.comments|number_format }}
Online
{{ statistics.users.online|number_format }}
Active (24 hr)
{{ statistics.users.active|number_format }}
Topics
{{ statistics.forum_topics|number_format }}
Posts
{{ statistics.forum_posts|number_format }}
{% if online_users|length > 0 %}
{{ container_title(' Online Users') }}
{% for user in online_users %} {{ user.username }} {% endfor %}
{% endif %} {% if latest_user.user_id|default(0) > 0 %} {% endif %}
{{ container_title(' Changelog', false, '/changelog.php') }}
{{ changelog_listing(featured_changelog) }}
{% if current_user is defined %}
{{ container_title('Welcome') }}

You have 0 new messages because the PM system doesn't exist yet, have a nice day.

{% endif %} {% for post in featured_news %} {{ news_preview(post) }} {% endfor %}
{% if linked_data is defined and linked_data is iterable %} {% endif %} {% endblock %}