forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 883 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
34
35
36
37
---
layout: default
---
<div class="home">
<h1 class="page-heading">Latest post</h1>
{% for post in site.posts limit:1 %}
<hr />
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<span class="post-meta">|</span>
<span class="post-meta">
Tags: {{ post.tags | sort | join: ", " }}
</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
{{ post.excerpt }}
<a href="{{ post.url | prepend: site.baseurl }}">Read more ...</a>
<hr />
{% endfor %}
<br />
<h1 class="page-heading">Recent posts</h1>
<ul>
{% for post in site.posts limit:10 %}
<li>
{{ post.date | date: "%B %d, %Y" }}: <a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<p>
<a href="{{ "/archive" | prepend: site.baseurl }}">Read more articles</a>
</p>
</div>