{{ default(jumbo_title, "Default Title") }}
{% if exists("jumbo_text") %}
{{ jumbo_text }}
{% endif %}
{% if exists("cards") %}
{% for card in cards %}
{{ card.category }}
{{ card.title }}
{{ card.date }}
{{ card.text }}
{% endfor %}
{% endif %}
{% for article in default(articles, []) %}
{{ article.title }}
{% if exists("article.date") %}
{{ article.date }}
{% endif %} {% for paragraph in article.content %}
{{ paragraph }}
{% endfor %}
{% endfor %}
{% if exists("about") %}
About
{{ about }}
{% endif %} {% if exists("links") %}
Links
{% for link in default(links, []) %}
{{ link.text }}
{% endfor %}
{% endif %}