mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 21:34:06 -06:00
[PUBLISHER] Merge #41
This commit is contained in:
parent
76987b006f
commit
c86eb2f8de
@ -5,28 +5,29 @@ share: "true"
|
|||||||
path: content
|
path: content
|
||||||
en-filename: index
|
en-filename: index
|
||||||
title: 首页
|
title: 首页
|
||||||
updated: 2024-12-04 17:49
|
updated: 2024-12-04 18:02
|
||||||
---
|
---
|
||||||
|
|
||||||
这个是首页
|
---
|
||||||
|
|
||||||
```contributionGraph
|
<strong>🆕 最近创建:</strong>
|
||||||
title: Contributions
|
|
||||||
graphType: default
|
|
||||||
dateRangeValue: 365
|
|
||||||
dateRangeType: LATEST_DAYS
|
|
||||||
startOfWeek: 1
|
|
||||||
showCellRuleIndicators: true
|
|
||||||
titleStyle:
|
|
||||||
textAlign: left
|
|
||||||
fontSize: 15px
|
|
||||||
fontWeight: normal
|
|
||||||
dataSource:
|
|
||||||
type: PAGE
|
|
||||||
value: ""
|
|
||||||
dateField: {}
|
|
||||||
fillTheScreen: false
|
|
||||||
enableMainContainerShadow: false
|
|
||||||
cellStyleRules: []
|
|
||||||
|
|
||||||
```
|
<ul>
|
||||||
|
{% assign recent_notes = site.notes | sort: "date created" | reverse %}
|
||||||
|
{% for note in recent_notes | limit: 6 %}
|
||||||
|
<li>
|
||||||
|
{{ note['date created']}} — <a class="internal-link" href="{{ note.url }}">{{ note.title }}</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<strong>⏰ 最近更新:</strong>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{% assign recent_notes = site.notes | sort: "date modified" | reverse %}
|
||||||
|
{% for note in recent_notes | limit: 6 %}
|
||||||
|
<li>
|
||||||
|
{{ note['date modified']}} — <a class="internal-link" href="{{ note.url }}">{{ note.title }}</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user