mirror of
https://github.com/zrgn/zrgn.github.io
synced 2025-06-26 13:48:34 +00:00
Adding lots of stuff to make this an actual site driven by json data
This commit is contained in:
parent
16c98e99fc
commit
3161176e3a
22 changed files with 26326 additions and 3 deletions
14
_includes/rules.html
Normal file
14
_includes/rules.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<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 %}
|
Loading…
Add table
Add a link
Reference in a new issue