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/app/ui-sidenav/client/sidebarHeader.html

21 lines
644 B

<template name="sidebarHeader">
<header class="sidebar__header">
{{#with myUserInfo}}
<div aria-haspopup="true" class="sidebar__header-thumb">
{{> avatar username=username}}
<div class="sidebar__header-status-bullet sidebar__header-status-bullet--{{status}}"></div>
</div>
<div class="sidebar__toolbar">
{{#each toolbarButtons}}
<button class="sidebar__toolbar-button js-button" title="{{name}}" aria-haspopup="{{hasPopup}}">
{{> icon block="sidebar__toolbar-button-icon" icon=icon }}
</button>
{{/each}}
</div>
{{/with}}
{{#if showToolbar}}
{{> toolbar }}
{{/if}}
</header>
</template>