PortableInfobox/templates/PortableInfoboxHorizontalGroupContent.hbs

19 lines
937 B
Handlebars
Raw Normal View History

2019-02-02 22:34:48 +00:00
<table class="pi-horizontal-group{{#unless renderLabels}} pi-horizontal-group-no-labels{{/unless}}"{{#if item-name}} data-item-name="{{item-name}}"{{/if}}>
{{#if header}}<caption class="pi-header pi-secondary-font pi-secondary-background pi-item-spacing"{{#if inlineStyles}} style="{{inlineStyles}}"{{/if}}>{{{header}}}</caption>{{/if}}
2018-08-08 09:31:33 +00:00
{{#if renderLabels}}
<thead>
<tr>
{{#each data}}
2019-02-02 22:34:48 +00:00
<th class="pi-horizontal-group-item pi-data-label pi-secondary-font pi-border-color pi-item-spacing"{{#if source}} data-source="{{source}}"{{/if}}{{#if item-name}} data-item-name="{{item-name}}"{{/if}}>{{{label}}}</th>
2018-08-08 09:31:33 +00:00
{{/each}}
</tr>
</thead>
{{/if}}
<tbody>
<tr>
{{#each data}}
2019-02-02 22:34:48 +00:00
<td class="pi-horizontal-group-item pi-data-value pi-font pi-border-color pi-item-spacing"{{#if source}} data-source="{{source}}"{{/if}}{{#if item-name}} data-item-name="{{item-name}}"{{/if}}>{{{value}}}</td>
{{/each}}
</tr>
2018-08-08 09:31:33 +00:00
</tbody>
</table>