2018-03-22 02:56:41 +00:00
|
|
|
{% extends '@mio/home/master.twig' %}
|
|
|
|
{% from '@mio/macros.twig' import navigation, link %}
|
2018-04-16 00:33:54 +00:00
|
|
|
{% from '@mio/news/macros.twig' import news_preview %}
|
2018-03-22 02:56:41 +00:00
|
|
|
|
2018-04-14 02:58:53 +00:00
|
|
|
{% set canonical_url = '/' %}
|
|
|
|
|
2018-03-22 02:56:41 +00:00
|
|
|
{% block content %}
|
2018-04-16 00:33:54 +00:00
|
|
|
{% if app.session != null %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="container__title">Welcome</div>
|
|
|
|
<div class="container__content">
|
|
|
|
<p>You have 0 new messages because the PM system doesn't exist yet, have a nice day.</p>
|
|
|
|
</div>
|
2018-03-22 02:56:41 +00:00
|
|
|
</div>
|
2018-04-16 00:33:54 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="container news__container">
|
|
|
|
<a class="container__title container__title--link" href="/news.php">Featured News</a>
|
|
|
|
<div class="container__content news__container__content">
|
|
|
|
<div class="news__preview__listing">
|
|
|
|
{% for post in featured_news %}
|
|
|
|
{{ news_preview(post) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2018-03-22 02:56:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ navigation(mio_navigation, '/') }}
|
|
|
|
{% endblock %}
|
|
|
|
|