lvl0-website/themes/linkita/templates/taxonomy_single.html

16 lines
476 B
HTML
Raw Normal View History

2025-07-10 20:07:36 +02:00
{% 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" %}
<h1 class="mb-16">#{{ term.name }}</h1>
{%- elif taxonomy.name == "categories" %}
<h1 class="mb-16">{{ term.name }}</h1>
{%- else %}
<h1 class="mb-16">{{ term.name }}</h1>
{%- endif %}
{% include "partials/page_list.html" %}
{% endblock main %}