forked from daniellimws/daniellimws.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 702 Bytes
/
index.html
File metadata and controls
23 lines (21 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
---
{% include intro.html %}
<section class="post-list">
<div class="container">
{% for post in paginator.posts %}
<div class="post-preview">
<span class="post-title alignable pull-left">
<a class="post-link underline" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</span>
<span class="post-time alignable pull-right">
<time>{{ post.date | date: '%B %d, %Y '}}</time>
</span>
<div style="clear:both"></div>
</div>
{% endfor %}
</div>
</section>