27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<template name="app">
|
|
{{#header brandHref='http://ohif.org' headerClasses=instance.headerClasses}}
|
|
{{#section 'brand'}}
|
|
<svg class="logo-image">
|
|
<use xlink:href={{absoluteUrl "packages/ohif_viewerbase/assets/icons.svg#icon-ohif-logo"}}></use>
|
|
</svg>
|
|
<div class="logo-text">Open Health Imaging Foundation</div>
|
|
{{/section}}
|
|
{{#section 'headerAfterBrand'}}
|
|
{{#if studyListToggleText}}
|
|
<a href="#" class="btn studyListLinkSection pull-left js-toggle-studyList" id="{{dasherize studyListToggleText}}-btn">
|
|
{{studyListToggleText}}
|
|
</a>
|
|
{{/if}}
|
|
{{/section}}
|
|
{{#section 'headerMenu'}}
|
|
<span class="user-name pull-left m-r-1">{{userName}}</span>
|
|
<div class="menu-toggle pull-right">
|
|
<i class="fa fa-cog"></i>
|
|
<span class="caret-down"></span>
|
|
</div>
|
|
{{/section}}
|
|
{{/header}}
|
|
|
|
{{>Template.dynamic template=(choose this.template 'studylist') data=this}}
|
|
</template>
|