summaryrefslogtreecommitdiff
path: root/templates/macros.html
blob: 416c2b476fd0a12766371f3adde34e6d1eab61c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% 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 %}