2024-05-10 08:11:13 +08:00
|
|
|
<ul class="item-list">
|
2024-04-18 01:34:21 +08:00
|
|
|
{% for content in contentList %}
|
|
|
|
<li>
|
2024-05-10 08:11:13 +08:00
|
|
|
<p class="item-list__title">
|
2024-04-18 01:34:21 +08:00
|
|
|
<a href="{{ content.url }}">
|
|
|
|
{% if content.data.title %}{{ content.data.title }}
|
|
|
|
{% else %}
|
|
|
|
<code>{{ content.url }}</code>
|
|
|
|
{% endif %}
|
|
|
|
</a>
|
|
|
|
</p>
|
2024-05-10 10:34:12 +08:00
|
|
|
<time>{{ content.date | formatDate }}</time>
|
2024-04-18 01:34:21 +08:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<style>
|
2024-05-10 08:11:13 +08:00
|
|
|
.item-list {
|
2024-04-18 01:34:21 +08:00
|
|
|
display: grid;
|
|
|
|
gap: 1em;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
2024-05-10 08:11:13 +08:00
|
|
|
.item-list__title {
|
2024-04-18 01:34:21 +08:00
|
|
|
font-size: clamp(1.55rem, 1rem + 3vw, 1.2rem);
|
|
|
|
line-height: 1.3;
|
|
|
|
margin-bottom: 0.2em;
|
|
|
|
}
|
|
|
|
</style>
|