Skip to content
Snippets Groups Projects
milliways.tpl 849 B
Newer Older
  • Learn to ignore specific revisions
  • <div class="cbb">
    <h3>Current Milliways Users</h3>
    
    {if $people|@count < 1}
    
    <p>No-one active on Milliways</p>
    
        {foreach name=people from=$people key=personnum item=person}
    
        <li>{$person.username} <small>({$person.idle} idle)</small></li>
    
        {/foreach}
    
    <h3><a href="{$mwpath}/URI">Recent URIs</a></h3>
    
        {foreach name=list from=$urilist item=uri}
    
        <li style="white-space: nowrap"><a href="{$uri.url|escape:"html"}" title="{$uri.title|escape:"html"}">{$uri.title|truncate:28:"..":true:false|escape:"html"}</a></li>
    
    <div class="cbb">
    <h3><a href="{$mwpath}/tag">Recent TAGs</a></h3>
    <ul>
        {foreach name=taglist from=$taglist item=tag}
        <li>{$tag.user} <a href="{$mwpath}/tag/{$tag.name|escape:'url'}">{$tag.tag}</a></li>
        {/foreach} 
    </ul>
    </div>