citra-emu
/
citra-web
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra-web/site/themes/citra-bs-theme/layouts/game/list.html

63 lines
2.3 KiB
HTML
Raw Normal View History

2017-06-03 22:00:44 +00:00
{{ define "main" }}
2017-06-03 23:19:19 +00:00
<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>
2017-06-04 18:06:33 +00:00
<table class="table table-striped table-bordered">
2017-06-03 23:19:19 +00:00
<tbody>
2017-06-04 18:12:44 +00:00
{{ range .Site.Data.compatibility }}
<tr>
2017-06-04 23:54:35 +00:00
<td style="width: 128px;"><div class="square-icon" style="background-color: {{ .color }}"></div> {{ .name }}</td>
2017-06-04 18:12:44 +00:00
<td>{{ .description }}</td>
</tr>
{{ end }}
2017-06-03 23:19:19 +00:00
</tbody>
</table>
<div id="highchart-container" style="height: 100px; margin: 0 auto"></div>
<table class="table table-responsive">
2017-06-04 18:12:44 +00:00
<thead>
<tr>
<th></th>
<th>Title</th>
<th>Compatibility</th>
<th>Date Tested</th>
</tr>
</thead>
<tbody>
{{ range .Data.Pages }}
2017-06-04 18:12:44 +00:00
{{ $rating := index .Site.Data.compatibility ( string .Params.compatibility | default "0" ) }}
2017-06-03 22:00:44 +00:00
<tr>
<td style="width: 55px;"><img class="img-responsive game-icon-list" src="{{ .Site.BaseURL }}images/game/icons/{{ default (print .File.BaseFileName ".png") }}" /></td>
2017-06-04 18:12:44 +00:00
<td><a href="{{ .Permalink }}">{{ .Params.title }}</a></td>
<td class="compatibility-row"><div class="square-icon compatibility-{{ replace ($rating.name | urlize) "/" "" }}" style="background-color: {{ $rating.color }}"></div> {{ $rating.name }}</td>
2017-06-04 18:12:44 +00:00
<td>{{ dateFormat "January 2, 2006" .Params.tested_date }}</td>
2017-06-03 22:00:44 +00:00
</tr>
2017-06-04 18:12:44 +00:00
{{ end }}
</tbody>
</table>
2017-06-03 22:00:44 +00:00
{{ end }}
{{ define "scripts" }}
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script type="text/javascript">
Highcharts.chart('highchart-container', {
chart: { type: 'bar' },
colors: [{{ range .Site.Data.compatibility }}"{{ .color }}", {{- end }}],
credits: { enabled: false },
exporting: { enabled: false },
title: { text: '' },
xAxis: { categories: [''] },
yAxis: { min: 0, max: $(".compatibility-row").length, title: { text: '' } },
legend: { enabled: false },
plotOptions: { series: { stacking: 'normal' } },
series: [
{{ range .Site.Data.compatibility }}
{ "name": "{{ .name }}", "data": [$(".compatibility-{{ replace (.name | urlize) "/" "" }}").length] },
{{ end }}
]
});
</script>
{{ end }}