The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/client/views/app/sideNav/sideNav.html

37 lines
954 B

<template name="sideNav">
<aside class="side-nav" role="navigation">
<header class="header">
{{> userStatus}}
</header>
{{#if currentUser}}
<div class="unread-rooms top-unread-rooms hidden">
{{_ "More_unreads"}} <i class="icon-up-big"></i>
</div>
<div class="rooms-list">
<div class="wrapper">
{{#if showStarredRooms }}
{{> starredRooms }}
{{/if}}
{{> channels }}
{{> directMessages }}
{{> privateGroups }}
<h3>
<a href="{{pathFor 'privateHistory'}}">{{_ "History"}}</a>
</h3>
</div>
</div>
<div class="unread-rooms bottom-unread-rooms hidden">
{{_ "More_unreads"}} <i class="icon-down-big"></i>
</div>
<div class="flex-nav hidden">
<section>
{{> Template.dynamic template=flexTemplate data=flexData}}
</section>
</div>
<span class="arrow bottom"></span>
{{/if}}
<footer class="footer">
{{{footer}}}
</footer>
</aside>
</template>