{% macro typeof(thing) %} {% if thing is iterable %} {% if thing is object %} dict {% else %} list {% endif %} {% else %} {% if thing is string %} str {% elif thing is number %} num {% else %} other {% endif %} {% endif %} {% endmacro typeof %} {% macro render_article_summary(page) %}