This is a blog demo
Some text about this blog.
{%- if config["mostrecent"]|length > 1 %}
{%- endif %}
World
{{config["mostrecent"][0]["title"]}}
{{config["mostrecent"][0]["date"]}}
{{config["mostrecent"][0]["summary"]}}
Continue reading
World
{{config["mostrecent"][1]["title"]}}
{{config["mostrecent"][1]["date"]}}
{{config["mostrecent"][1]["summary"]}}
Continue reading
{{ body }}
{% macro panel_show_item_recur(item, class, lvl, max_lvl=2) -%}
{{ item["name"] }}
{% if item["children"]|length > 0 and lvl <= max_lvl %}
{%- for child_item in item["children"] %}
{{ panel_show_item_recur(child_item, class, lvl + 1, max_lvl) }}
{% endfor %}
{% endif %}
{%- endmacro %}
{%- for item in meta["panel"] %}
{%- if item.type and item.type == "text" %}
{{ item.content | safe }}
{%- elif item.type == "toc" %}
{%- for item_lvl1 in meta["toc"] %}
{{ panel_show_item_recur(item_lvl1, "toc_item", 2, item.max_lvl|default(2)) }}
{% endfor %}
{% endif %}
{%- endfor %}