1
0
Fork 0
mirror of https://github.com/zrgn/zrgn.github.io synced 2024-11-13 20:28:41 +00:00
zrgn.github.io/_includes/rules.html

14 lines
No EOL
380 B
HTML

<h1 class="title is-1">Rules of Zargon</h1>
{% for order in site.data.rules.order %}
{% assign rule_data = site.data.all_rules[order] %}
<div class="content ruleset">
<h4 class="subtitle is-4">{{ rule_data.title }}</h4>
<ul>
{% for rule in rule_data.rules %}
<li>
{{ rule.text }}
</li>
{% endfor %}
</ul>
</div>
{% endfor %}