{% 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') }}
{% if users_count < 1 %} This is a fresh installation, create an account! {% else %} We have {{ users_count|number_format }} users and the last person to join was {{ last_user.username }}, ! {% endif %}
{% if online_users > 0 %}
{{ container_title('Online users') }}
{% for user in online_users %} {{ user.username }} {% endfor %}
{% endif %}
{{ container_title('Changelog', '/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 %}