mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
14 lines
902 B
Handlebars
14 lines
902 B
Handlebars
{{#each itemSections as |section sectionIndex|}}
|
|
<div class="flex flex-column justify-center h5 {{unless (eq sectionIndex 0) "mt4"}} mb4 nl4 nr4 pl4 pr4 bg-whitegrey midlightgrey ttu f-supersmall fw4 tracked-3" style="min-width: calc(100% + 3.2rem);">
|
|
{{section.title}}
|
|
</div>
|
|
{{#each section.items as |item|}}
|
|
{{#if (or (not item.developerExperiment) (and item.developerExperiment (enable-developer-experiments)))}}
|
|
<div class="{{if item.selected "kg-cardmenu-card-selected"}} {{kg-style "cardmenu-card"}}" onclick={{action itemClicked item}} data-kg="cardmenu-card" role="menuitem">
|
|
<div class="{{kg-style "cardmenu-icon"}} {{item.iconClass}}" aria-hidden="true">{{svg-jar item.icon class="w8 h8"}}</div>
|
|
<div class="{{kg-style "cardmenu-label"}}">{{item.label}}</div>
|
|
</div>
|
|
{{/if}}
|
|
{{/each}}
|
|
{{/each}}
|