2lcc/layouts/_default/home.html

30 lines
614 B
HTML
Raw Normal View History

2025-02-19 11:21:38 +00:00
{{ 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 }}