Added additional metadata: description, releases, needs from the data file.
This commit is contained in:
parent
e8609c366a
commit
c6700d0645
|
@ -29,6 +29,7 @@
|
||||||
<img class="center-block img-responsive" style="height: 300px;" src="{{ .Site.BaseURL }}images/game/boxart/{{ .Params.Banner | default (print .File.BaseFileName ".png") }}" />
|
<img class="center-block img-responsive" style="height: 300px;" src="{{ .Site.BaseURL }}images/game/boxart/{{ .Params.Banner | default (print .File.BaseFileName ".png") }}" />
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-7">
|
<div class="col-md-7">
|
||||||
|
<!-- Metadata information -->
|
||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -45,11 +46,24 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Title IDs</td>
|
<td>Title IDs</td>
|
||||||
<td>{{ delimit .Params.id ", " }}</td>
|
<td>
|
||||||
|
{{ range .Params.releases }}
|
||||||
|
{{ .title }} ({{ .region }}) <br />
|
||||||
|
{{ end }}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>System Files Required?</td>
|
||||||
|
<td>{{ if eq .Params.needs_system_files true }}Yes{{ else }}No{{ end }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Shared Font Required?</td>
|
||||||
|
<td>{{ if eq .Params.needs_shared_font true }}Yes{{ else }}No{{ end }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<p>{{ .Params.Description }}</p>
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Reference in New Issue