You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

128 lines
4.0 KiB

<header>
{if="$mode == 'blog'"}
<ul class="list thick">
<li>
<span class="primary icon gray">
<i class="zmdi zmdi-edit"></i>
</span>
<span class="control icon active">
<a
href="{$c->route('feed', array($contact->jid))}"
target="_blank"
title="Atom"
>
<i class="zmdi zmdi-rss"></i>
</a>
</span>
{if="$contact"}
<p>
<a href="{$c->route('blog', array($contact->jid))}">
{$c->__('blog.title', $contact->getTrueName())}
</a>
</p>
{else}
<p>
<a href="{$c->route('blog', array($contact->jid))}">
{$c->__('page.blog')}
</a>
</p>
{/if}
{if="isset($contact->description)"}
<p>{$contact->description}</p>
{/if}
</li>
</ul>
{elseif="$mode == 'tag'"}
<ul class="list middle">
<li>
{if="$c->getUser()->isLogged()"}
<span class="primary icon active gray" onclick="history.back()">
<i class="zmdi zmdi-arrow-back"></i>
</span>
{else}
<span class="primary icon gray">
<i class="zmdi zmdi-tag"></i>
</span>
{/if}
<p>
<a href="{$c->route('tag', array($tag))}">
#{$tag}
</a>
</p>
</li>
</ul>
{else}
<ul class="list thick">
<li>
<span class="primary icon gray">
<i class="zmdi zmdi-pages"></i>
</span>
<span class="control icon active">
<a
href="{$c->route('feed', array($server, $node))}"
target="_blank"
title="Atom"
>
<i class="zmdi zmdi-rss"></i>
</a>
</span>
<p>
<a href="{$c->route('node', array($server, $node))}">
{if="$item != null"}
{if="$item->name"}
{$item->name}
{else}
{$item->node}
{/if}
{/if}
</a>
</p>
{if="$item->description"}
<p title="{$item->description|stripTags}">
{$item->description|stripTags}
</p>
{else}
<p>{$item->server}</p>
{/if}
</li>
</ul>
{/if}
</header>
<div class="card shadow" title="{$c->__('page.feed')}" id="blog" >
{loop="$posts"}
{if="$mode == 'tag'"}
{$c->prepareCard($value)}
{else}
{$c->preparePost($value)}
{/if}
{/loop}
{if="isset($more)"}
<article>
<ul class="list active thick">
{if="$mode == 'blog'"}
<a href="{$c->route('blog', [$contact->jid, $more])}">
{elseif="$mode == 'tag'"}
<a href="{$c->route('tag', [$tag, $more])}">
{else}
<a href="{$c->route('node', [$server, $node, $more])}">
{/if}
<li id="history" class="block large">
<span class="primary icon gray"><i class="zmdi zmdi-time-restore"></i></span>
<p class="normal line center">{$c->__('post.older')}</p>
</li>
</a>
</ul>
</article>
{/if}
{if="$posts == null"}
<ul class="list simple thick">
<li>
<span class="primary icon gray">
<i class="zmdi zmdi-comment-outline"></i>
</span>
<p class="normal">{$c->__('blog.empty')}</p>
</li>
</ul>
{/if}
</div>