2015-05-06 13:42:02 +00:00
{ % if user . checklogin % }
<div class="head">Hi, { { user . data . username } } !</div>
2015-06-20 19:25:41 +00:00
<a href="// { { sakura . urls . main } } /settings/avatar"><img src="// { { sakura . urls . main } } /a/ { { user . data . id } } " class="default-avatar-setting homepage-menu-avatar" /></a>
<ul class="panel-quick-links">
<li><a href="// { { sakura . urls . main } } /friends" title="View friends list"><span class="fa fa-users"></span><span class="count">0</span></a></li>
<li><a href="// { { sakura . urls . main } } /messages" title="View private messages"><span class="fa fa-envelope"></span><span class="count">0</span></a></li>
2015-05-06 13:42:02 +00:00
</ul>
<div class="clear"></div>
{ % else % }
{ % if sakura . lockauth % }
<div class="head">Whoops!</div>
You caught the site at the wrong moment! Right now registration <i>and</i> logging in is disabled for unspecified reasons. Sorry for the inconvenience but please try again later!
2015-05-25 18:18:56 +00:00
<div class="indexSidePanelLinks">
<a class="fa fa-lock" href="#" title="Authentication is locked"></a>
</div>
2015-05-06 13:42:02 +00:00
{ % else % }
<div class="head">Welcome!</div>
Welcome to Flashii! This is a site for a bunch of friends to hang out, nothing special. Anyone is pretty much welcome to register so why not have a go?
2015-05-25 18:18:56 +00:00
<div class="indexSidePanelLinks">
<a class="fa fa-magic" href="// { { sakura . urls . main } } /register" title="Register" id="indexSidePanelRegister"></a>
<a class="fa fa-sign-in" href="// { { sakura . urls . main } } /login" title="Login" id="indexSidePanelLogin"></a>
</div>
2015-05-06 13:42:02 +00:00
{ % endif % }
{ % endif % }
<div class="head">Stats</div>
We have <b> { { stats . userCount } } </b>,
<b><a href="// { { sakura . urls . main } } /u/ { { stats . newestUser . id } } " class="default"> { { stats . newestUser . username } } </a></b> is the newest user,
it has been <b> { { stats . lastRegDate } } </b> since the last user registered,
there's <b> { { stats . chatOnline } } </b> in chat right now and the forum has <b> { { stats . topicCount } } </b> and <b> { { stats . postCount } } </b>.
<div class="head">Online Users</div>
{ % if stats . onlineUsers % }
All active users in the past 5 minutes:<br />
{ % for amount , onlineUser in stats . onlineUsers % }
<a href="// { { sakura . urls . main } } /u/ { { onlineUser . id } } " style="font-weight: bold;" class="default"> { { onlineUser . username } } </a> { % if amount ! = ( stats . onlineUsers | length - 1 ) % } , { % endif % }
{ % endfor % }
{ % else % }
There were no online users in the past 5 minutes.
2015-05-09 00:56:55 +00:00
{ % endif % }