Blame view

doraemon/views/partial/common/floor-header.hbs 327 Bytes
yyq authored
1
<div class="floor-header clearfix">
yyq authored
2 3 4
    {{# name}}
        <h2 class="floor-title">{{.}}</h2>
    {{/ name}}
yyq authored
5 6 7 8
    {{#if navs}}
    <ul class="header-navs">
        {{# navs}}
        <li data-classify="{{id}}">
biao authored
9
        <a target="_blank" href="{{url}}">{{name}}</a>
yyq authored
10 11 12 13 14
        </li>
        {{/ navs}}
    </ul>
    {{/if}}
</div>