{{ page.title }}
{% if page.cards %}
{% for card in page.cards %}
{% for page in site.content %}
{% if page.title == card %}
{% if page.nocard %}
{{ page.content }}
{% else %}
{{ page.content }}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% elsif page.nocard %}
{{ content }}
{% else %}
{{ content }}
{% endif %}
{% if page.links %}
{% for link in page.links %}
{% assign split = link | split: "|" %}
- {{ split[0] }}
{% endfor %}
{% endif %}
{% if page.tags.size > 0 %}
- tags:
{% for tag in page.tags %}
- {{ tag }}
{% endfor %}
{% endif %}