diff options
Diffstat (limited to 'view/tpl/bookmarkedchats.tpl')
-rw-r--r-- | view/tpl/bookmarkedchats.tpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/view/tpl/bookmarkedchats.tpl b/view/tpl/bookmarkedchats.tpl new file mode 100644 index 000000000..3aabf835a --- /dev/null +++ b/view/tpl/bookmarkedchats.tpl @@ -0,0 +1,10 @@ +{{if $rooms}} +<div id="chatroom_bookmarks" class="widget"> +<h3>{{$header}}</h3> +<ul class="bookmarkchat nav nav-pills nav-stacked"> +{{foreach $rooms as $room}} +<li><a href="{{$room.xchat_url}}">{{$room.xchat_desc}}</a></li> +{{/foreach}} +</ul> +</div> +{{/if}} |