{% for shortcut in include.shortcuts %}
{% for direction in include.directions %}
{% if direction[0] == 'all' %}
{{ shortcut[0] }} |
{{ shortcut[1] }} |
{% for value in include.values %}
{{ shortcut[1] }}-{{ value[0] }} |
{% endfor %}
{% else %}
{{ shortcut[0] }}-{{ direction[0] }} |
{{ shortcut[1] }}{{ direction[1] }} |
{% for value in include.values %}
{{ shortcut[1] }}{{ direction[1] }}-{{ value[0] }} |
{% endfor %}
{% endif %}
{% endfor %}
{{ shortcut[0] }}-left and
{{ shortcut[0] }}-right
|
{{ shortcut[1] }}{{ include.horizontal }} |
{% for value in include.values %}
{{ shortcut[1] }}{{ include.horizontal }}-{{ value[0] }} |
{% endfor %}
{% if include.vertical %}
{{ shortcut[0] }}-top and
{{ shortcut[0] }}-bottom
|
{{ shortcut[1] }}{{ include.vertical }} |
{% for value in include.values %}
{{ shortcut[1] }}{{ include.vertical }}-{{ value[0] }} |
{% endfor %}
{% endif %}
{% endfor %}