{% extends "base.html" %} {% block title %}{{ author.nickname }} - özgürsözlük{% endblock %} {% block meta %} {% endblock %} {% block main %}

{{ author.nickname }}

{% if author.rank %}{{ author.rank.name }} ({{ author.rank.karma }}){% endif %}

{{ author.record_date }} - {{ author.total_entry }} Entry - {{ author.follower_count }} Follower - {{ author.following_count }} Following
{% if author.biography_html %}
{{ author.biography_html|safe }}
{% endif %} {% if author_last_entrys %} Last Entrys:
{% from "macros.html" import render_entry %} {% for entry in author_last_entrys %} {{ render_entry(entry, is_pinned_override=entry.is_pinned_on_profile, hide_author_override=True, show_topic_title=True) }} {% endfor %}
{% endif %} {% endblock %}