{% if dict._profile_pic %} Profile {% endif %}

{{ dict._title or "Untitled" }}

{{ dict._subtitle or "" }}

{% if dict._card_value1 or dict._card_value2 or dict._card_value3 %}
{% if dict._card_value1 %}
{{ dict._card_value1 }}
{% endif %} {% if dict._card_value2 %}
{{ dict._card_value2 }}
{% endif %} {% if dict._card_value3 %}
{{ dict._card_value3 }}
{% endif %}
{% endif %}
{% for key, value in dict.items() %} {% if not key.startswith('_') %} {{ key }}: {{ value }} {% endif %} {% endfor %}