-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathall.html
More file actions
32 lines (23 loc) · 710 Bytes
/
all.html
File metadata and controls
32 lines (23 loc) · 710 Bytes
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
---
layout: default
title: 对刘谈心-liuning0820.github.io
---
<h1>All Articles:</h1>
<ul class="posts">
{% for post in site.posts %}
<li>{{ post.date | date_to_string }} » <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2>Collections:_en-us</h2>
{% for item in site.en-us %}
<li><a href="{{ item.url | prepend: site.baseurl }}">
{{ item.title }} - {{ item.author }}
</a></li>
<!-- <p>{{ item.content}}</p> -->
{% endfor %}
<h2>Collections :_zh-cn</h2>
{% for item in site.zh-cn %}
<li><a href="{{ item.url | prepend: site.baseurl }}">
{{ item.title }} - {{ item.author }}
</a></li>
{% endfor %}