Added games list.

This commit is contained in:
chris062689 2017-06-03 18:00:44 -04:00
parent 09c4080370
commit 263a52ce5e
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{{ define "main" }}
{{ $paginator := .Paginate .Data.Pages }}
<table class="table">
<thead>
<tr>
<th></th>
<th>Title</th>
<th>Compatibility</th>
<th>Date Tested</th>
</tr>
</thead>
<tbody>
{{ range $paginator.Pages }}
{{ $rating := index .Site.Data.compatibility ( string .Params.compatibility | default "0" ) }}
<tr>
<td><img class="img-responsive" src="{{ .Site.BaseURL }}images/game/icons/{{ default (print .File.BaseFileName ".png") }}" /></td>
<td><a href="{{ .Permalink }}">{{ .Params.title }}</a></td>
<td>{{ $rating.name }}</td>
<td>{{ dateFormat "January 2, 2006" .Params.tested_date }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ partial "pagination" . }}
{{ end }}