mirror of
https://github.com/marcriera/ddgo-controller-docs.git
synced 2025-05-10 18:37:05 +02:00
36 lines
1 KiB
HTML
36 lines
1 KiB
HTML
## Game details
|
|
|
|
<table>
|
|
<tr>
|
|
<td rowspan="4">{{ if (index .Site.Data.games (.Get 0)).cover}}<img src="/images/covers/{{ (index .Site.Data.games (.Get 0)).cover }}"/>{{ end }}</td>
|
|
<td><strong>Name</strong></td>
|
|
<td>{{ (index .Site.Data.games (.Get 0)).name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Japanese name</strong></td>
|
|
<td>{{ (index .Site.Data.games (.Get 0)).namejp }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Release date</strong></td>
|
|
<td>{{ (index .Site.Data.games (.Get 0)).date | time.Format ":date_long" }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Serial code</strong></td>
|
|
<td>{{ (index .Site.Data.games (.Get 0)).code }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
## Controller compatibility
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Model</th>
|
|
<th>Notes</th>
|
|
</tr>
|
|
{{ range (index .Site.Data.games (.Get 0)).controllers }}
|
|
<tr id="{{ if .adapter }}adapter{{ else }}native{{ end }}">
|
|
<td>{{ (index $.Site.Data.controllers .model).code }}: {{ (index $.Site.Data.controllers .model).name }}</td>
|
|
<td>{{ .notes }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|