-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_head.hbs
More file actions
39 lines (36 loc) · 677 Bytes
/
_head.hbs
File metadata and controls
39 lines (36 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<thead class="table__head">
{{#if [0].note}}
<tr class="table__row">
<td class="
table__cell
table__note
"
colspan="{{ columnCount }}"
scope="colgroup"
>
{{[0].note}}
</td>
</tr>
{{/if}}
<tr class="table__row">
{{#each [0].columns}}
<th class="
table__cell
table__cell--{{this.type}}
{{#if this.row}}
table__cell--rowhead
{{/if}}
"
scope="col"
>
{{this.name}}
</th>
{{else}}
<th class="table__cell"
scope="col"
>
No columns defined.
</th>
{{/each}}
</tr>
</thead>