citra-emu
/
citra-web
Archived
1
0
Fork 0

Added regions flags for Title IDs.

This commit is contained in:
chris062689 2017-06-04 14:12:44 -04:00
parent 8a215c4043
commit 2c3bbeaaf5
1 changed files with 27 additions and 50 deletions

View File

@ -4,60 +4,37 @@
<table class="table table-striped table-bordered"> <table class="table table-striped table-bordered">
<tbody> <tbody>
<tr> {{ range .Site.Data.compatibility }}
<td>Perfect</td> <tr>
<td>Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed.</td> <td>{{ .name }}</td>
</tr> <td>{{ .description }}</td>
<tr> </tr>
<td>Excellent</td> {{ end }}
<td>Game functions with minor graphical or audio glitches, game is playable from start to finish without any workarounds needed.</td>
</tr>
<tr>
<td>Great</td>
<td>Game functions with minor graphical or audio glitches, but game is playable from start to finish with workarounds.</td>
</tr>
<tr>
<td>Okay</td>
<td>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</td>
</tr>
<tr>
<td>Bad</td>
<td>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</td>
</tr>
<tr>
<td>Intro/Menu</td>
<td>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</td>
</tr>
<tr>
<td>Won't Boot</td>
<td>The game crashes when attempting to startup.</td>
</tr>
</tbody> </tbody>
</table> </table>
<h2>Games</h2> <table class="table">
<table class="table"> <thead>
<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> <tr>
<th></th> <td><img class="img-responsive" src="{{ .Site.BaseURL }}images/game/icons/{{ default (print .File.BaseFileName ".png") }}" /></td>
<th>Title</th> <td><a href="{{ .Permalink }}">{{ .Params.title }}</a></td>
<th>Compatibility</th> <td>{{ $rating.name }}</td>
<th>Date Tested</th> <td>{{ dateFormat "January 2, 2006" .Params.tested_date }}</td>
</tr> </tr>
</thead> {{ end }}
<tbody> </tbody>
{{ $paginator := .Paginate .Data.Pages 50 }} </table>
{{ 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" . }} {{ partial "pagination" . }}
{{ end }} {{ end }}