-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.html
40 lines (37 loc) · 969 Bytes
/
rules.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
---
layout: home
title: Explanation of rules
permalink: /rules/
---
<div>
<h1>Explanation of rules</h1>
<h2>Beat independent rules</h2>
<p>In order of execution:</p>
<dl>
{% for bi in site.data.rules %}
{% if bi.type == "beatIndependent" %}
<dt>{{bi.rule}}</dt>
<dd>{{bi.definition}}</dd>
{% endif %}
{% endfor %}
</dl>
<h2>Compex analysis</h2>
<h3>Imperfection</h3>
<dl>
{% for imp in site.data.rules %}
{% if imp.type == "imperfection" %}
<dt>{{imp.rule}}</dt>
<dd>{{imp.definition}}</dd>
{% endif %}
{% endfor %}
</dl>
<h3>Alteration</h3>
<dl>
{% for alt in site.data.rules %}
{% if alt.type == "alteration" %}
<dt>{{alt.rule}}</dt>
<dd>{{alt.definition}}</dd>
{% endif %}
{% endfor %}
</dl>
</div>