streams/view/tpl/bookmarkedchats.tpl

11 lines
258 B
Smarty
Raw Normal View History

2014-02-28 01:07:11 +00:00
{{if $rooms}}
2016-03-31 11:21:48 +00:00
<div id="chatroom_bookmarks" class="widget">
2014-02-28 01:07:11 +00:00
<h3>{{$header}}</h3>
<ul class="bookmarkchat nav nav-pills nav-stacked">
2014-02-28 01:07:11 +00:00
{{foreach $rooms as $room}}
<li><a href="{{$room.xchat_url}}">{{$room.xchat_desc}}</a></li>
{{/foreach}}
</ul>
</div>
2016-03-31 11:21:48 +00:00
{{/if}}