-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
18 lines (18 loc) · 894 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
section: home
footer_nav: true
---
<div class="home">
<div class="post-list">
{% for post in site.posts limit: 5 %}
<section>
<h1><a class="post-link" href="{% if post.stuburl %}{{ post.stuburl }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}">{{ post.title }}</a></h1>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<article class="post-content{% if forloop.index0 != 0 %} excerpt{% endif %}">{% if forloop.index0 == 0 %}{{ post.content }}{% else %}{{ post.excerpt }}<a class="excerpt-link" href="{% if post.stuburl %}{{ post.stuburl }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}">Continue reading...</a>{%
endif %}
</article>
</section>{% endfor %}
<span class="archive-link"><a href="/blog/">View all post</a> ({{ site.posts | size }} posts)</span>
</div>
</div>