diff --git a/site/themes/citra-bs-theme/layouts/game/list.html b/site/themes/citra-bs-theme/layouts/game/list.html new file mode 100644 index 0000000..2e03fff --- /dev/null +++ b/site/themes/citra-bs-theme/layouts/game/list.html @@ -0,0 +1,27 @@ +{{ define "main" }} + {{ $paginator := .Paginate .Data.Pages }} + + + + + + + + + + + + {{ range $paginator.Pages }} + {{ $rating := index .Site.Data.compatibility ( string .Params.compatibility | default "0" ) }} + + + + + + + {{ end }} + +
TitleCompatibilityDate Tested
{{ .Params.title }}{{ $rating.name }}{{ dateFormat "January 2, 2006" .Params.tested_date }}
+ + {{ partial "pagination" . }} +{{ end }}