forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 818 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
31
32
33
---
layout: default
---
<div class="posts">
{% for post in site.posts %}
<article class="post">
<table width=100%> <tr>
<td>
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
</td>
<td valign="middle" align="right">
<div class="posts-subtitle">
{{ post.date | date: "%B %e, %Y" }}
{% if post.categories %}
{% for category in post.categories %}
{{ category | upcase }}
{% endfor %}
{% endif %}
</div>
</td>
</tr> </table>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>
{% include lbox.html %}