1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/templates/skin/synio/infobox.info.blog.tpl

35 lines
1.3 KiB
Smarty
Raw Normal View History

{**
* Содержимое поповера с информацией о блоге
*}
<ul class="dotted-list blog-info">
<li class="dotted-list-item">
<span class="dotted-list-item-label">{$aLang.infobox_blog_create}</span>
<span class="dotted-list-item-value">{date_format date=$oBlog->getDateAdd() format="j F Y"}</span>
</li>
<li class="dotted-list-item">
<span class="dotted-list-item-label">{$aLang.infobox_blog_topics}</span>
<span class="dotted-list-item-value">{$oBlog->getCountTopic()}</span>
</li>
<li class="dotted-list-item">
<span class="dotted-list-item-label"><a href="{$oBlog->getUrlFull()}users/">{$aLang.infobox_blog_users}</a></span>
<span class="dotted-list-item-value">{$oBlog->getCountUser()}</span>
</li>
<li class="dotted-list-item blog-info-rating">
<span class="dotted-list-item-label">{$aLang.infobox_blog_rating}</span>
<span class="dotted-list-item-value">{$oBlog->getRating()}</span>
</li>
2012-05-13 20:22:36 +03:00
</ul>
{if $oTopicLast}
{$aLang.infobox_blog_topic_last}:<br/>
<a href="{$oTopicLast->getUrl()}" class="popover-blog-info-topic">{$oTopicLast->getTitle()|escape:'html'}</a>
2013-04-06 22:06:48 +03:00
<br/>
<br/>
{/if}
<div class="popover-blog-info-actions">
2012-05-13 20:22:36 +03:00
<a href="{$oBlog->getUrlFull()}">{$aLang.infobox_blog_url}</a><br/>
<a href="{router page='rss'}blog/{$oBlog->getUrl()}/">{$aLang.infobox_blog_rss}</a>
</div>