| {{ Profile.userName }} |
{% if Profile.icon %}
{% else %}
{% endif %}
|
|
{% if Profile.content %}
{{ Profile.parsedContent() }}
{% else %}
{{ Profile.description }}
{% endif %}
|
{% if Profile.email %}
| E-mail: |
{{ String.obfuscate(Profile.email) }} |
{% endif %}
{% if Profile.website %}
| Website: |
{{ Profile.website }} |
{% endif %}
| User since: |
{{ Time.localString(Profile.created) }} |
| Posts authored: |
{{ User.postsAuthored(Profile.userName) }} |
| Posts edited: |
{{ User.postsEdited(Profile.userName) }} |
| Last visit: |
{{ Time.localString(Profile.lastVisit) }} |
|