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.json

12 lines
519 B
JSON
Raw Normal View History

2017-06-05 12:18:02 +00:00
{
{{- $lenGames := sub (len .Data.Pages) 1 }}
{{- range $index, $element := .Data.Pages }}
{{- $game := . }}
{{- $gameIndex := $index }}
{{- $lenRegions := sub (len .Params.releases) 1 }}
{{- range $regionIndex, $element := .Params.releases }}
"{{ $element.title }}": { "region": "{{ .region }}", "gameID": "{{ $game.File.BaseFileName }}", "compatibility": "{{ $game.Params.compatibility }}" }{{- if and (eq $gameIndex $lenGames) (eq $regionIndex $lenRegions) }}{{ else }},{{ end }}
2017-06-05 12:18:02 +00:00
{{- end }}
{{- end }}
2017-06-05 12:18:02 +00:00
}