forked from diethardsteiner/diethardsteiner.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 969 Bytes
/
index.html
File metadata and controls
39 lines (32 loc) · 969 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
---
layout: default
---
<div class="recent-posts">
<h1>Recent Posts</h1>
<ul class="homepage-posts most-recent">
{% for post in site.posts limit:1 %}
<li>
<span>
<h4>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<span class="badge"><smaller>FRESH</smaller></span>
<time class="pull-right">{{ post.date | date: '%B %d, %Y' }}</time>
</h4>
</span>
</li>
{% endfor %}
{% for post in site.posts offset:1 limit:4 %}
<li>
<span>
<h4>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
<time class="pull-right">{{ post.date | date: '%B %d, %Y'}}</h4></time>
</h4>
</span>
</li>
{% endfor %}
<li>
<a href="{{ site.baseurl }}/list.html">View More...</a>
</li>
</ul>
</div>