forked from brookhong/brookhong.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (25 loc) · 796 Bytes
/
index.html
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
---
layout: default
title: Brook Hong
---
<div class='section profile English'>
{% include about.html %}
</div>
<div class='section posts English'>
<ul class="posts">
{% for post in site.categories.en %}
<li><span>{{ post.date | date: "%m/%d/%Y" }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
<div class='section profile 中文'>
{% include about_cn.html %}
</div>
<div class='section posts 中文'>
<ul class="posts">
{% for post in site.categories.cn %}
<li><span>{{ post.date | date: "%Y-%m-%d" }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
<script src="/assets/lib/require.js" data-main="/assets/js/home.js"></script>