Initial commit
This commit is contained in:
commit
93e0de7a04
22 changed files with 310 additions and 0 deletions
29
layouts/_default/home.html
Normal file
29
layouts/_default/home.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{{ 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue