Skip to content
Snippets Groups Projects
Verified Commit 227aecb2 authored by Jake's avatar Jake
Browse files

added tag.html

parent 4ad93e24
No related branches found
No related tags found
No related merge requests found
Pipeline #312530 passed
...@@ -19,6 +19,14 @@ Hurra!!! lang ist definiert als {{ lang }}. ...@@ -19,6 +19,14 @@ Hurra!!! lang ist definiert als {{ lang }}.
{%- endif -%} {%- endif -%}
{%- endmacro -%} {%- endmacro -%}
{%- macro tag_by_name(tagname) -%}
{%- for nativetag, tagarticles in tags -%}
{%- if nativetag.name == tagname -%}
{{- caller(nativetag, tagarticles) -}}
{%- endif -%}
{%- endfor -%}
{%- endmacro -%}
{%- macro article_by_slug(slug, lang) -%} {%- macro article_by_slug(slug, lang) -%}
{%- for a in all_articles -%} {%- for a in all_articles -%}
{%- if a.slug == slug and a.lang == lang -%} {%- if a.slug == slug and a.lang == lang -%}
......
...@@ -42,6 +42,25 @@ ...@@ -42,6 +42,25 @@
{%- endcall -%} {%- endcall -%}
{%- endmacro -%} {%- endmacro -%}
{%- macro render_section_tag(s) -%}
{%- call(nativetag, tagarticles) tag_by_name(s.tag) -%}
{%- if s.title is not defined -%}
<header>
<h2 {% if s.id is defined -%}id="{{ s.id }}"{%- endif %}>{{ s.tag|e }}</h2>
</header>
{%- endif -%}
<ul class="catcards">
{%- for article in tagarticles -%}
{%- if loop.index < s.num -%}
{%- call(nativecat, sccat, _) category_by_name(article.category.name) -%}
<li style="--category-color: {{ sccat.color }}"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
{%- endcall -%}
{%- endif -%}
{%- endfor -%}
</ul>
{%- endcall -%}
{%- endmacro -%}
{%- macro render_section(s) -%} {%- macro render_section(s) -%}
{%- if s.title is defined -%} {%- if s.title is defined -%}
<header> <header>
...@@ -56,6 +75,8 @@ ...@@ -56,6 +75,8 @@
{{ render_section_custom(s) }} {{ render_section_custom(s) }}
{%- elif s.type == "category" -%} {%- elif s.type == "category" -%}
{{ render_section_category(s) }} {{ render_section_category(s) }}
{%- elif s.type == "tag" -%}
{{ render_section_tag(s) }}
{%- else -%} {%- else -%}
<br /> <br />
<strong>ERROR: render_section: Unknown section type: {{ s.type|e }}</strong><br /> <strong>ERROR: render_section: Unknown section type: {{ s.type|e }}</strong><br />
......
{% extends "index.html" %}
{% block title %}{{ l[lang].title_prefix }}{{ l[lang].sitename }}{{ l[lang].title_suffix }} - {{ tag }}{%endblock%}
{% block content %}
<section>
{{ render_section({"type": "tag", "tag": tag.slug, "num": 5000 }) }}
</section>
{% endblock content %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment