2025-02-19 11:21:38 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
<div class="filter">
|
2025-02-19 20:46:58 +00:00
|
|
|
<input placeholder="Filter" id="filter">
|
2025-02-19 11:21:38 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Code</th>
|
|
|
|
<th>Country</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{ range .Site.Data.cclist }}
|
|
|
|
<tr data-role="country" data-code="{{lower .Code}}" data-name="{{lower .Name}}">
|
|
|
|
<td>{{ .Code }}</td>
|
|
|
|
<td>{{ .Name }}</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{{ range site.RegularPages }}
|
|
|
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
|
|
|
{{ .Summary }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|