[PUBLISHER] Merge #42

This commit is contained in:
wangzipai 2024-12-04 18:03:32 +08:00 committed by GitHub
parent c86eb2f8de
commit ca4ab67468
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,7 @@ share: "true"
path: content
en-filename: index
title: 首页
updated: 2024-12-04 18:02
updated: 2024-12-04 18:03
---
---
@ -13,7 +13,7 @@ updated: 2024-12-04 18:02
<strong>🆕 最近创建:</strong>
<ul>
{% assign recent_notes = site.notes | sort: "date created" | reverse %}
{% assign recent_notes = site.notes | sort: "date" | reverse %}
{% for note in recent_notes | limit: 6 %}
<li>
{{ note['date created']}} — <a class="internal-link" href="{{ note.url }}">{{ note.title }}</a>
@ -24,7 +24,7 @@ updated: 2024-12-04 18:02
<strong>⏰ 最近更新:</strong>
<ul>
{% assign recent_notes = site.notes | sort: "date modified" | reverse %}
{% assign recent_notes = site.notes | sort: "updated" | reverse %}
{% for note in recent_notes | limit: 6 %}
<li>
{{ note['date modified']}} — <a class="internal-link" href="{{ note.url }}">{{ note.title }}</a>