File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ layout: feed
14
14
15
15
</author >
16
16
17
- {% for note in site.notes %}
17
+ {% for post in site.posts %}
18
18
<entry >
19
- <title >{{ note .title }}</title >
19
+ <title >{{ post .title }}</title >
20
20
<link href =" https://wangchunyang.github.io{{ post.url }}" />
21
- <updated >{{ note .date | date_to_xmlschema }}</updated >
22
- <id >https://wangchunyang.github.io{{note .id}}</id >
23
- <content type =" html" >{{note .content|xml_escape}}</content >
21
+ <updated >{{ post .date | date_to_xmlschema }}</updated >
22
+ <id >https://wangchunyang.github.io{{post .id}}</id >
23
+ <content type =" html" >{{post .content|xml_escape}}</content >
24
24
</entry >
25
25
{% endfor %}
26
26
Original file line number Diff line number Diff line change 3
3
title: Notes
4
4
---
5
5
< h1 > {{ page.title }}</ h1 >
6
- < ul class ="notes ">
6
+ < ul class ="posts ">
7
7
8
- {% for note in site.notes %}
9
- < li > < span > {{note .date|date_to_string}}</ span > » < a href ="{{note .url}} " title ="{{note .title}} "> {{note .title}}</ a > </ li >
8
+ {% for post in site.posts %}
9
+ < li > < span > {{post .date|date_to_string}}</ span > » < a href ="{{post .url}} " title ="{{post .title}} "> {{post .title}}</ a > </ li >
10
10
{% endfor %}
11
11
</ ul >
You can’t perform that action at this time.
0 commit comments