PortableInfobox/templates/PortableInfoboxItemSmartGroup.hbs

14 lines
588 B
Handlebars
Raw Normal View History

2017-01-12 13:11:46 +00:00
<section class="pi-item pi-smart-group pi-border-color">
2018-08-08 09:31:33 +00:00
{{#if renderLabels}}
<section class="pi-smart-group-head">
2018-08-08 09:31:33 +00:00
{{#each labels}}
2018-07-31 10:29:24 +00:00
<h3 class="pi-smart-data-label pi-data-label pi-secondary-font pi-item-spacing" style="{{{inlineStyles}}}">{{{value}}}</h3>
2018-08-08 09:31:33 +00:00
{{/each}}
2017-01-12 13:11:46 +00:00
</section>
2018-08-08 09:31:33 +00:00
{{/if}}
<section class="pi-smart-group-body">
2018-08-08 09:31:33 +00:00
{{#each values}}
2018-07-31 10:29:24 +00:00
<div class="pi-smart-data-value pi-data-value pi-font pi-item-spacing" style="{{{inlineStyles}}}">{{{value}}}</div>
2018-08-08 09:31:33 +00:00
{{/each}}
2017-01-12 13:11:46 +00:00
</section>
2018-08-08 09:31:33 +00:00
</section>