2017-03-23 16:21:31 +01:00
|
|
|
{{ "<!-- SUBPAGE SIGNATURES -->" | safeHTML }}
|
|
|
|
<header>
|
|
|
|
<div class="header-content">
|
|
|
|
<div class="header-content-inner">
|
|
|
|
<div class="col-lg-8 col-lg-offset-2 text-center">
|
2017-03-23 19:36:39 +01:00
|
|
|
<h1>{{ .Site.Params.Subpage.Signatures.Headline }}</h1>
|
2017-03-23 19:14:20 +01:00
|
|
|
<hr />
|
2017-03-23 16:21:31 +01:00
|
|
|
<table class="signatures">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2017-03-23 19:36:39 +01:00
|
|
|
<th>{{ .Site.Params.Subpage.Signatures.name }}</th>
|
|
|
|
<th>{{ .Site.Params.Subpage.Signatures.country }}</th>
|
|
|
|
<th>{{ .Site.Params.Subpage.Signatures.zip }}</th>
|
2017-03-23 16:21:31 +01:00
|
|
|
</tr>
|
2017-06-15 14:33:51 +02:00
|
|
|
{{ range .Site.Data.signatures.data }}
|
2017-03-24 01:20:54 +01:00
|
|
|
{{ range sort . "id" "desc" }}
|
|
|
|
{{ if (eq .confirmed "yes") | and (eq .permPub "yes") }}
|
2017-03-23 19:14:20 +01:00
|
|
|
<tr>
|
|
|
|
<td>{{ .name }}</td>
|
|
|
|
<td>{{ .country }}</td>
|
|
|
|
<td>{{ .zip }}</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2017-03-23 16:21:31 +01:00
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|