{% extends 'base.html' %} {% from 'components/rant_card.html' import render_rant_card %} {% block content %} ← Back to Feed
{{ profile.username[0]|upper }}

{{ profile.username }}

{% if profile.about %}

{{ escape_html(profile.about) }}

{% endif %} {% if profile.skills %}

Skills: {{ escape_html(profile.skills) }}

{% endif %} {% if profile.location %}

Location: {{ escape_html(profile.location) }}

{% endif %} {% if profile.github %}

GitHub: {{ profile.github }}

{% endif %} {% if profile.website %}

Website: {{ profile.website }}

{% endif %}
{{ profile.score }}
Score
{{ rants|length }}
Rants
{{ comments|length }}
Comments
{% if current_user and current_user.id == profile_user_id %} {% endif %}
Rants Comments Favorites
{% if active_tab == 'rants' %} {% for rant in rants %} {{ render_rant_card(rant) }} {% endfor %} {% elif active_tab == 'comments' %} {% for comment in comments %}
{{ escape_html(comment.body) }}
{% endfor %} {% elif active_tab == 'favorites' %} {% for rant in favorites %} {{ render_rant_card(rant) }} {% endfor %} {% endif %}
{% endblock %}