mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 08:05:36 +01:00
Updated GameDB single.html
This commit is contained in:
parent
20c5bc62ca
commit
4f18d0c1e9
@ -30,7 +30,7 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
{{ $gameId := .File.BaseFileName }}
|
{{ $gameId := .File.BaseFileName }}
|
||||||
{{ $rating := index .Site.Data.compatibility .Params.compatibility }}
|
{{ $rating := index .Site.Data.compatibility .Params.compatibility }}
|
||||||
<section class="section content pt-sm">
|
<section class="section content pt-lg">
|
||||||
{{- if eq .Params.incomplete true }}
|
{{- if eq .Params.incomplete true }}
|
||||||
<article class="message is-danger is-size-7">
|
<article class="message is-danger is-size-7">
|
||||||
<div class="message-body">
|
<div class="message-body">
|
||||||
@ -49,9 +49,15 @@
|
|||||||
|
|
||||||
<article class="message is-size-7">
|
<article class="message is-size-7">
|
||||||
<div class="message-body">
|
<div class="message-body">
|
||||||
|
{{ if .Content }}
|
||||||
<p>The below game entry is based on user submitted content.</p>
|
<p>The below game entry is based on user submitted content.</p>
|
||||||
<p>See a mistake? Want to contribute? <a href="{{ .Site.Params.GithubGamesWikiURL }}/wiki/{{ .File.BaseFileName }}/_edit/">Edit
|
<p>See a mistake? Want to contribute? <a href="{{ .Site.Params.GithubGamesWikiURL }}/wiki/{{ .File.BaseFileName }}/_edit/">Edit
|
||||||
this article on Github</a></p>
|
this article on Github</a></p>
|
||||||
|
{{ else }}
|
||||||
|
<p>The below game entry is based on user submitted content.</p>
|
||||||
|
<p>See a mistake? Want to contribute? <a href="{{ .Site.Params.GithubGamesWikiURL }}/wiki/{{ .File.BaseFileName }}/">Edit
|
||||||
|
this article on Github</a></p>
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
@ -66,11 +72,10 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<h2>Compatibility</h2>
|
<h2>Compatibility</h2>
|
||||||
{{ if gt (len .Params.issues) 0 }}
|
{{ if gt (len .Params.testcases) 0 }}
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="advanced-view">ID</th>
|
|
||||||
<th>Build Date</th>
|
<th>Build Date</th>
|
||||||
<th>Tested By</th>
|
<th>Tested By</th>
|
||||||
<th>Hardware</th>
|
<th>Hardware</th>
|
||||||
@ -83,7 +88,6 @@
|
|||||||
{{ range .Params.testcases }}
|
{{ range .Params.testcases }}
|
||||||
{{- $rating := index $siteCompatibility .compatibility }}
|
{{- $rating := index $siteCompatibility .compatibility }}
|
||||||
<tr class="is-size-7">
|
<tr class="is-size-7">
|
||||||
<td class="advanced-view">{{ if isset . "id" }} {{ .id }} {{ end }}</td>
|
|
||||||
<td>{{ if isset . "buildDate" }} {{ dateFormat "01/2/2006" .buildDate }} {{ end }}</td>
|
<td>{{ if isset . "buildDate" }} {{ dateFormat "01/2/2006" .buildDate }} {{ end }}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="https://community.citra-emu.org/u/{{ .author }}/summary">{{ .author }}</a>
|
<a href="https://community.citra-emu.org/u/{{ .author }}/summary">{{ .author }}</a>
|
||||||
@ -92,10 +96,10 @@
|
|||||||
<td>{{ .cpu }}<br />{{ .gpu }}<br />{{ .os }}</td>
|
<td>{{ .cpu }}<br />{{ .gpu }}<br />{{ .os }}</td>
|
||||||
<td>{{ if isset . "buildName" }}{{ .buildName }} Build<br />{{ end }}{{ .version }}</td>
|
<td>{{ if isset . "buildName" }}{{ .buildName }} Build<br />{{ end }}{{ .version }}</td>
|
||||||
<td>
|
<td>
|
||||||
<b>
|
<div>
|
||||||
<div class="square-icon" style="background-color: {{ $rating.color }}"></div>
|
<span class="is-square" style="background-color: {{ $rating.color }};"></span>
|
||||||
{{ $rating.name}}
|
{{ $rating.name}}
|
||||||
</b>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user