-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (31 loc) · 850 Bytes
/
index.html
File metadata and controls
39 lines (31 loc) · 850 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
33
34
35
36
37
38
39
---
layout: layout1
title: Blog
---
{% for post in site.posts limit:4 %}
<h3>
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
<span>{{ post.date | date: '%B' }} {{ post.date | date: '%e' }}, {{ post.date | date: '%Y' }}</span>
<p>
{{ post.excerpt | markdownify }}
<span class="more"><a href="{{ post.url }}">More...</a></span>
</p>
{% endfor %}
<ul>
{% for post in site.posts %}
{% if forloop.index > 4 %}
<li>
Older Posts:
<a href="{{ post.url }}" title="{{ post.title }}">
<span class="date">
<span class="day">{{ post.date | date: '%d' }}</span>
<span class="month"><abbr>{{ post.date | date: '%b' }}</abbr></span>
<span class="year">{{ post.date | date: '%Y' }}</span>
</span>
<span class="title">{{ post.title }}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>