-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.html
51 lines (48 loc) · 911 Bytes
/
data.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
robots: noindex
---
<h1>Libretro Images</h1>
<table border="1">
<thead>
<tr><th>filename</th></tr>
</thead>
<tbody>
{% for image in site.data.libretro %}
<tr><td>{{ image.filename }}</td></tr>
{% endfor %}
</tbody>
</table>
<h1>Licensed</h1>
<table border="1">
<thead>
<tr>
<th>title</th>
<th>line</th>
</tr>
</thead>
<tbody>
{% for game in site.data.licensed_games %}
<tr>
<td>{{ game.title | newline_to_br }}</td>
<td>l_{{ forloop.index0 }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h1>Unlicensed</h1>
<table border="1">
<thead>
<tr>
<th>title</th>
<th>line</th>
</tr>
</thead>
<tbody>
{% for game in site.data.unlicensed_games %}
<tr>
<td>{{ game.title | newline_to_br }}</td>
<td>u_{{ forloop.index0 }}</td>
</tr>
{% endfor %}
</tbody>
</table>