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/resources/views/yuuno/forum/index.twig

71 lines
4.7 KiB
Twig
Raw Normal View History

2016-07-31 19:36:13 +00:00
{% extends 'master.twig' %}
{% set title = 'Forums' %}
{% block content %}
<div class="content homepage forum">
2016-11-09 18:32:23 +00:00
<div class="content--right">
2016-07-30 13:48:09 +00:00
<div id="forumIndexPopularTopics">
2016-11-09 18:32:23 +00:00
<div class="content__header content__header--alt">Popular topics</div>
2016-11-10 22:32:45 +00:00
<table class="sidepanel-table" style="border-spacing: 0;">
<tr>
2016-11-10 22:32:45 +00:00
<th class="sidepanel-table__head">Title</th>
<th class="sidepanel-table__head">Last reply</th>
</tr>
2016-07-30 13:48:09 +00:00
{% for _t in activeTopics %}
<tr {% if _t.unread(user.id) %}style="font-weight: bold;"{% endif %}>
2016-11-10 22:32:45 +00:00
<td class="sidepanel-table__column" style="text-align: left; border-bottom: 1px solid #9475b2;">
2016-11-09 18:32:23 +00:00
<a href="{{ route('forums.topic', _t.id) }}">{{ _t.title }}</a>
</td>
2016-11-10 22:32:45 +00:00
<td class="sidepanel-table__column" style="text-align: right; border-bottom: 1px solid #9475b2;"><time class="time-ago" datetime="{{ _t.lastPost.time|date('r') }}">{{ _t.lastPost.time|date(config('general.date_format')) }}</time></td>
</tr>
{% endfor %}
</table>
</div>
<div id="forumIndexNewPosts">
2016-11-09 18:32:23 +00:00
<div class="content__header content__header--alt">Latest posts</div>
2016-11-10 22:32:45 +00:00
<table class="sidepanel-table" style="border-spacing: 0;">
<tr>
2016-11-10 22:32:45 +00:00
<th class="sidepanel-table__head">Title &amp; user</th>
<th class="sidepanel-table__head">Posted</th>
</tr>
{% for _p in latestPosts %}
<tr {% if _p.unread(user.id) %}style="font-weight: bold;"{% endif %}>
2016-11-10 22:32:45 +00:00
<td class="sidepanel-table__column" style="text-align: left; border-bottom: 1px solid #9475b2;">
2016-11-09 18:32:23 +00:00
<a href="{{ route('forums.post', _p.id) }}">{{ _p.subject }}</a>
by
2016-11-09 18:32:23 +00:00
<a href="{{ route('user.profile', _p.poster.id) }}"><span style="color: {{ _p.poster.colour }};">{{ _p.poster.username }}</span></a>
</td>
2016-11-10 22:32:45 +00:00
<td class="sidepanel-table__column" style="text-align: right; border-bottom: 1px solid #9475b2;">
<time class="time-ago" datetime="{{ _p.time|date('r') }}">
{{ _p.time|date(config('general.date_format')) }}
</time>
</td>
</tr>
{% endfor %}
</table>
</div>
<div id="forumMostActivePoster">
2016-11-09 18:32:23 +00:00
<div class="content__header content__header--alt">Today's most active poster</div>
{% if activePoster.id %}
2016-11-09 18:32:23 +00:00
<a href="{{ route('user.profile', activePoster.id) }}" class="link link--clean">
<div class="user" style="background-image: url({{ route('user.header', activePoster.id) }});">
<div class="avatar avatar--border user__avatar" style="background-image: url({{ route('user.avatar', activePoster.id) }}); box-shadow: 0 0 5px #{% if activePoster.isOnline %}484{% else %}844{% endif %};"></div>
<div class="user__info">
2016-08-04 21:24:08 +00:00
<h1 style="color: {{ activePoster.colour }}; text-shadow: 0 0 7px {% if activePoster.colour != 'inherit' %}{{ activePoster.colour }}{% else %}#222{% endif %}; padding: 0 0 2px;" {% if activePoster.getUsernameHistory %} title="Known as {{ activePoster.getUsernameHistory[0].username_old }} before {{ activePoster.getUsernameHistory[0].change_time|date(config('general.date_format')) }}." {% endif %}>{{ activePoster.username }}</h1>
{% if activePoster.isPremium %}<img src="/images/tenshi.png" alt="Tenshi" style="vertical-align: middle;"> {% endif %}<img src="/images/flags/{{ activePoster.country|lower }}.png" alt="{{ activePoster.country }}" style="vertical-align: middle;" title="{{ activePoster.country(true) }}"> <span style="font-size: .8em;">{{ activePoster.title }}</span>
</div>
</div>
</a>
{% else %}
2016-11-08 19:56:37 +00:00
<h1 style="margin: 1em 0; text-align: center;">No one yet!</h1>
{% endif %}
</div>
</div>
2016-11-09 18:32:23 +00:00
<div class="content--left">
{% include 'forum/elements/forumBase.twig' %}
</div>
<div class="clear"></div>
</div>
{% endblock %}