-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 780 Bytes
/
index.html
File metadata and controls
32 lines (30 loc) · 780 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: Enlei-Cai
---
<section>
<article>
<h2>Blog Posts</h2>
<ul>
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</article>
<article class="tech">
<h2>Tech, Projects, Etc</h2>
<ul>
{% for post in site.categories.tech %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</article>
<article class="design">
<h2>Design</h2>
<ul>
{% for post in site.categories.design %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</article>
</section>