{% for Profile in Content %}
{{ Profile.userName }} {% if Profile.icon %} User icon {% else %} Icon {% endif %}
{{ Profile.fullName }}
{% if Profile.content %} {{ Profile.parsedContent() }} {% else %} {{ Profile.description }} {% endif %}
{% if Profile.email %} {% endif %} {% if Profile.website %} {% endif %}
E-mail: {{ String.obfuscate(Profile.email) }}
Website: {{ Profile.website }}
User since: {{ Time.localString(Profile.created) }}
Posts authored: {{ User.postsAuthored(Profile.userName) }}
Posts edited: {{ User.postsEdited(Profile.userName) }}
Last visit: {{ Time.localString(Profile.lastVisit) }}
{% else %}
There is nothing to display in this view.
{% endfor %}