30 lines
614 B
HTML
30 lines
614 B
HTML
|
{{ define "main" }}
|
||
|
{{ .Content }}
|
||
|
|
||
|
<div class="filter">
|
||
|
<input placeholder="filter" id="filter">
|
||
|
</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 }}
|