2015-04-02 13:41:05 +00:00
{ % include 'global/header.tpl' % }
<div class="content homepage">
<div class="content-right content-column">
2015-04-18 11:35:16 +00:00
{ % if user . checklogin % }
<div class="head">Hi, { { user . data . username } } !</div>
<img src="// { { sakura . urls . main } } /a/ { { user . data . id } } " class="default-avatar-setting homepage-menu-avatar" />
<ul>
<li><a href="// { { sakura . urls . main } } /settings/profile" class="underline">Edit profile</a></li>
<li><a href="// { { sakura . urls . main } } /settings/avatar" class="underline">Change avatar</a></li>
<li><a href="// { { sakura . urls . main } } /settings/sessions" class="underline">View active sessions</a></li>
</ul>
<div class="clear"></div>
{ % else % }
2015-04-24 19:31:09 +00:00
{ % 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!
{ % else % }
2015-04-18 11:35:16 +00:00
<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?
<a class="button registerbutton" href="/register">Register!</a>
<a class="button loginbutton" href="/login">Login</a>
2015-04-24 19:31:09 +00:00
{ % endif % }
2015-04-18 11:35:16 +00:00
{ % endif % }
2015-04-02 13:41:05 +00:00
<div class="head">Stats</div>
2015-04-02 14:03:58 +00:00
We have <b> { { stats . userCount } } </b>,
<b><a href="/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 and
there are <b> { { stats . chatOnline } } </b> in chat right now.
2015-04-27 00:41:59 +00:00
<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="/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.
{ % endif % }
2015-04-02 13:41:05 +00:00
</div>
<div class="content-left content-column">
<div class="head">News <a href="/news.xml" class="fa fa-rss news-rss default"></a></div>
{ % for newsPost in newsPosts % }
{ % include 'elements/newsPost.tpl' % }
{ % endfor % }
</div>
<div class="clear"></div>
</div>
2015-04-20 19:39:49 +00:00
<script type="text/javascript" src=" { { sakura . resources } } /js/ybabstat.js"></script>
2015-04-02 13:41:05 +00:00
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'flashii';
/* * * DO NOT EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
{ % include 'global/footer.tpl' % }