{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}
← Back
{% if current_tab == 'posts' %} {% for item in posts %} {% set _author = profile_user %}{% set _time = item.time_ago %}{% set _show_share = false %}{% set _show_comment_form = false %}{% include "_post_card.html" %} {% else %}
No posts yet.
{% endfor %} {% elif current_tab == 'projects' %} {% for p in projects %}

{{ p['title'] }}

● {{ p.get('status', 'In Development') }} {{ p.get('project_type', 'software')|replace('_', ' ')|capitalize }}
{{ p.get('description', '')[:200] }}
{% if p.get('platforms') %}
{% for plat in p['platforms'].split(',') %} {{ plat.strip() }} {% endfor %}
{% endif %}
{% else %}
No projects yet.
{% endfor %} {% elif current_tab == 'gists' %} {% for entry in gists %} {% set g = entry.gist %}

{{ g['title'] }}

☆ {{ g.get('stars', 0) }}
📝 {{ language_name(g['language']) }}
{% if g.get('description') %}
{{ g['description'][:200] }}{% if g['description']|length > 200 %}...{% endif %}
{% endif %}
{% else %}
No gists yet.
{% endfor %} {% else %} {% for act in activities %}
{% if act['type'] == 'post' %}📝{% else %}💬{% endif %} {% if act['type'] == 'post' %}Posted{% else %}Commented{% endif %} {{ act['time_ago'] }}

{{ act['content'] }}

{% else %}
No activity yet.
{% endfor %} {% endif %}
{% endblock %}