1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{% component format_chinese_date(year, month, day) %}
{% set lut1 = ["〇", "一", "二", "三", "四", "五", "六", "七", "八", "九"] %}
{% set lut2 = [
'一', '二', '三', '四',
'五', '六', '七', '八',
'九', '十', '十一', '十二',
'十三', '十四', '十五', '十六',
'十七', '十八', '十九', '二十',
'廿一', '廿二', '廿三', '廿四',
'廿五', '廿六', '廿七', '廿八',
'廿九', '三十', '三十一'] %}
{% for c in year | str %}{{ lut1 | nth(n=c | int) }}{% endfor %}年{{ lut2 | nth(n=month-1)}}月{{ lut2 | nth(n=day-1) }}日
{% endcomponent format_chinese_date %}
{% component 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 %}
{{ <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>
{% endcomponent post_meta %}
{% component shikwasa(subtitle, author, image, media) %}
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/shikwasa@2.2.0/dist/style.css"
/>
<script src="https://cdn.jsdelivr.net/npm/shikwasa@2.2.0/dist/shikwasa.min.js"></script>
<div class="podcast">
<script>
const player = new Shikwasa.Player({
container: () => document.querySelector(".podcast"),
audio: {
title: "{{subtitle}}",
artist: "{{author}}",
cover: "{{image | safe}}",
src: "{{media | safe}}",
},
fixed: {
type: "static",
},
});
</script>
</div>
{% endcomponent shikwasa %}
|