34 lines
1.3 KiB
HTML
34 lines
1.3 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 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}}
|
|
<div id="studylistTabs" class="tab-content">
|
|
<div class="tab-pane active" id="studylistTab">
|
|
<div class="studylistContainer">
|
|
{{>studylistResult}}
|
|
</div>
|
|
</div>
|
|
<div class="tab-pane" id="viewerTab">
|
|
</div>
|
|
</div>
|
|
</template>
|