zdecentralizowani/themes/tale-zola/templates/tags/list.html

63 wiersze
1.9 KiB
HTML

{% extends "base.html" %}
{% block seo -%}
{{ super() }}
{%- set tags = config.extra.expressions.tags | default(value="Tags") -%}
{% set og_title = tags -%}
{% if config.title -%}
{% set title = tags ~ " | " ~ config.title -%}
{% else -%}
{% set title = tags -%}
{% endif -%}
{% set web_type = "WebPage" -%}
{{ macros::seo(title=title, og_title=og_title, author=author, description=description, site_url=site_url, image=image, image_height=image_height, image_width=image_width, web_type=web_type) }}
{%- endblock seo %}
{% block content %}
<div class="tags">
<div class="tags-header">
<h2 class="tags-header-title">{{ config.extra.expressions.tags | default(value="Tags") }}</h2>
<div class="tags-header-line"></div>
</div>
<div class="tags-clouds">
{% for term in terms -%}
<a href="#{{ term.name }}">{{ term.name }}</a>
{%- endfor %}
</div>
{% for term in terms -%}
<div class="tags-item" id="{{ term.name }}">
<svg class="tags-item-icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path>
<line x1="7" y1="7" x2="7.01" y2="7"></line>
</svg>
<h2 class="tags-item-label"><a href="{{ term.permalink | safe }}">{{ term.name }}</a></h2>
{% for page in term.pages -%}
<a class="tags-post" href="{{ page.permalink | safe }}">
<div>
<span class="tags-post-title">{{ page.title }}</span>
<div class="tags-post-line"></div>
</div>
<span class="tags-post-meta">
<time datetime="{{ page.date }}">
{{ page.date | date(format=config.extra.timeformat |
default(value="%B %e, %Y")) }}
</time>
</span>
</a>
{% endfor -%}
</div>
{% endfor -%}
</div>
{% endblock content %}