{% if article.category %}
{{ article.category }}
{% endif %}
{{ article.title }}
By {{ article.authors|join(', ') }}
{% if article.category == 'roots' %}
{% for p in pages %}
{% if p.title == "definition short" %}
{{ p.content }}
{% endif %}
{% endfor %}
{% for c in categories %}
{% if c[0] == "roots" %}
{% for a in c[1] %}
- {{ a.title }}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
{{ article.summary }}
{% endif %}
{% if article.license %}
{% set FAL = "All images & text under Free Art License (FAL)" %}
{% if article.license is string %}
{{ article.license | replace("fal", FAL) }}
{% else %}
{% for license_line in article.license %}
{{ license_line | replace("fal", FAL) }}
{% if not loop.last %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% if article.sourcecode %}