summaryrefslogtreecommitdiff
path: root/templates/macros.html
diff options
context:
space:
mode:
authorMole Shang <135e2@135e2.dev>2026-09-02 15:49:49 +0800
committerMole Shang <135e2@135e2.dev>2026-09-02 15:49:49 +0800
commit23d62aaa39dae753d39dcd596b962ccc1c5cdb36 (patch)
tree269670883636ee9adb47a123acd69abd2d6522a0 /templates/macros.html
parenta582b6ef76bfb79744716f5cdfafff8c41861ec9 (diff)
downloadSeje2-main.tar.gz
Seje2-main.tar.bz2
Seje2-main.zip
templates: migrate to zola 0.23main
tera v1->v2 https://github.com/getzola/zola/issues/3235 https://github.com/Keats/tera/blob/master/MIGRATION.md
Diffstat (limited to 'templates/macros.html')
-rw-r--r--templates/macros.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/templates/macros.html b/templates/macros.html
deleted file mode 100644
index 04b27bf..0000000
--- a/templates/macros.html
+++ /dev/null
@@ -1,37 +0,0 @@
-{% macro format_chinese_date(year, month, day) %}
-{% set lut1 = ["〇", "一", "二", "三", "四", "五", "六", "七", "八", "九"] %}
-{% set lut2 = [
- '一', '二', '三', '四',
- '五', '六', '七', '八',
- '九', '十', '十一', '十二',
- '十三', '十四', '十五', '十六',
- '十七', '十八', '十九', '二十',
- '廿一', '廿二', '廿三', '廿四',
- '廿五', '廿六', '廿七', '廿八',
- '廿九', '三十', '三十一'] %}
-{% for c in year | as_str %}{{ lut1 | nth(n=c | int) }}{% endfor %}年{{ lut2 | nth(n=month-1)}}月{{ lut2 | nth(n=day-1) }}日
-{% endmacro %}
-
-{% macro post_meta(post, chinese_date, expand) %}
-<div class="post-meta" {% if expand %}style="text-align: end"{% endif %}>
- {% if expand %}<div>{% else %}<span>{% endif %}
- {% for author in post.authors %}
- {{ author }}
- {% endfor %}
- {% if expand %}</div>{% else %}</span>{% endif %}
- {% if expand %}<div>{% else %}<span class="divider">{% endif %}
- {% if chinese_date %}
- {{ macros::format_chinese_date(year=post.year, month=post.month, day=post.day) }}
- {% else %}
- {{ post.date|date(format="%Y/%m/%d") }}
- {% endif %}
- {% if expand %}</div>{% else %}</span>{% endif %}
- {% if expand %}<div>{% else %}<span class="divider">{% endif %}
- {% if post.taxonomies.tags %}
- {% for tag in post.taxonomies.tags %}
- <span class="tag"><a href="{{ get_taxonomy_url(kind="tags", name=tag) | safe }}">#{{ tag }}</a></span>
- {% endfor %}
- {% endif %}
- {% if expand %}</div>{% else %}</span>{% endif %}
-</div>
-{% endmacro %}