This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/templates/misaki/main/index.tpl

22 lines
827 B
Smarty
Raw Normal View History

{% extends 'global/master.tpl' %}
{% block content %}
<div class="homepage">
{% include 'elements/statsHeader.tpl' %}
<div class="onlineUsers platform">
{% if stats.onlineUsers %}
{% for amount,onlineUser in stats.onlineUsers %}
<a href="{{ urls.format('USER_PROFILE', [onlineUser.id]) }}" style="background-color: {{ onlineUser.colour }};">{{ onlineUser.username }}</a>
{% endfor %}
{% else %}
<div>There were no online users in the past 5 minutes.</div>
{% endif %}
</div>
<div class="frontNews platform">
{% for post in news.getPosts(0, newsCount) %}
{% include 'elements/newsPost.tpl' %}
{% endfor %}
</div>
2015-07-04 19:53:15 +00:00
</div>
{% endblock %}