-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 924 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
---
layout: default
---
<section class="main-content center">
<div id="images" class="main-logo">
<img id="loader" src="{{ site.media_server }}/images/ajax-loader.gif" />
<div id="images_caption" class="caption"></div>
</div>
<div class="main-recent-posts">
<p>My most recent post</p>
<ul>
{% for post in site.posts limit: 1%}
<li><a href="{{ post.url }}">{{ post.title }}</a>
<small>posted on {{ post.date | date: "%b %d, %Y" }}</small><li>
{% endfor %}
</ul>
</div>
<br />
<div class="main-posts">
<p>Other recent posts.</p>
<ul>
{% for post in site.posts offset: 1 limit: 100%}
<li><a href="{{ post.url }}">{{ post.title }}</a>
<small>posted on {{ post.date | date: "%b %d, %Y" }} </small>
</li>
{% endfor %}
</ul>
</div>
</article>