-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsystems.html
More file actions
34 lines (33 loc) · 897 Bytes
/
systems.html
File metadata and controls
34 lines (33 loc) · 897 Bytes
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
---
title: 対応ゲームシステム一覧 - BCDice
description: 100以上のゲームシステムに対応
layout: default
---
<article class="container">
<h1>対応ゲームシステム一覧</h1>
<p>BCDice {{ site.data.systems.version }}</p>
<div>
{% for category in site.data.systems.systems %}
<a href="#{{ category[0] }}">{{ category[0] }}</a>
{% endfor %}
</div>
{% for category in site.data.systems.systems %}
<h2 id="{{ category[0] }}">{{ category[0] }}</h2>
<table class="system-list">
<thead>
<tr>
<th class="system-name">名前</th>
<th class="system-id">ID</th>
</tr>
</thead>
<tbody>
{% for system in category[1] %}
<tr>
<td class="system-name">{{ system.name }}</td>
<td class="system-id">{{ system.system }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
</article>