{% extends "misago/base.html" %} {% load i18n misago_absoluteurl %} {% block title %}{{ profile.username }} | {{ block.super }}{% endblock %} {% block meta-description %} {% blocktrans trimmed with title=profile.get_any_title joined_on=profile.joined_on|date %} {{ title }}, joined on {{ joined_on }}. {% endblocktrans %} {% endblock %} {% block og-title %}{{ profile.username }}{% endblock %} {% block twitter-title %}{{ profile.username }}{% endblock %} {% block og-description %} {% blocktrans trimmed with title=profile.get_any_title joined_on=profile.joined_on|date %} {{ title }}, joined on {{ joined_on }}. {% endblocktrans %} {% blocktrans trimmed count posts=profile.posts %} Wrote {{ posts }} post. {% plural %} Wrote {{ posts }} posts. {% endblocktrans %} {% blocktrans trimmed count threads=profile.threads %} Started {{ threads }} thread. {% plural %} Started {{ threads }} threads. {% endblocktrans %} {% endblock og-description %} {% block twitter-description %} {% blocktrans trimmed with title=profile.get_any_title joined_on=profile.joined_on|date %} {{ title }}, joined on {{ joined_on }}. {% endblocktrans %} {% blocktrans trimmed count posts=profile.posts %} Wrote {{ posts }} post. {% plural %} Wrote {{ posts }} posts. {% endblocktrans %} {% blocktrans trimmed count threads=profile.threads %} Started {{ threads }} thread. {% plural %} Started {{ threads }} threads. {% endblocktrans %} {% endblock twitter-description %} {% block og-url %}{% absoluteurl request_path %}{% endblock %} {% block twitter-url %}{% absoluteurl request_path %}{% endblock %} {% block og-image %} {% if settings.og_image_avatar_on_profile %} {% with profile.avatars|first as og_image %} {% endwith %} {% else %} {{ block.super }} {% endif %} {% endblock og-image %} {% block content %}
{% include "misago/profile/header.html" %} {% include "misago/profile/nav-sm.html" %}
{% block section %}{% endblock section %}
{% endblock content %}