41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
<h1>Game Compatibility List</h1>
|
|
<p>The Citra Emulator compatibility list contains all the games we tested, sorted by how well they work on the emulator.</p>
|
|
|
|
<table class="table table-striped table-bordered">
|
|
<tbody>
|
|
{{ range .Site.Data.compatibility }}
|
|
<tr>
|
|
<td>{{ .name }}</td>
|
|
<td>{{ .description }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Title</th>
|
|
<th>Compatibility</th>
|
|
<th>Date Tested</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ $paginator := .Paginate .Data.Pages 50 }}
|
|
{{ 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 }}
|