misuzu/views/mio/home/landing.twig

31 lines
1,001 B
Twig
Raw Normal View History

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-05-16 02:58:21 +00:00
{% if app.hasActiveSession %}
2018-04-16 00:33:54 +00:00
<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">
2018-05-27 00:20:35 +00:00
{% for post in featured_news %}
2018-04-16 00:33:54 +00:00
{{ news_preview(post) }}
{% endfor %}
</div>
2018-03-22 02:56:41 +00:00
</div>
</div>
{{ navigation(mio_navigation, '/') }}
{% endblock %}