{% extends "index.html" %}
{% block main %}
{%- if g_profile is defined %}
{%- if paginator is undefined or paginator.current_index == 1 %}
{% include "partials/profile.html" %}
{%- endif %}
{%- elif taxonomy.name == "tags" %}
#{{ term.name }}
{%- elif taxonomy.name == "categories" %}
{{ term.name }}
{%- else %}
{{ term.name }}
{%- endif %}
{% include "partials/page_list.html" %}
{% endblock main %}