forked from vsoch/vsoch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (18 loc) · 776 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
---
layout: default
title: Home
---
{% include intro.html %}
<section class="post-list">
<div class="container container-white">
<h2>Raaawwr..!</h2>
{% for post in paginator.posts %}{% if post.frontpage != false %}
<article class="post-item">
<p><span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> — <strong><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></strong> — <span> {{ post.content | strip_html | truncatewords: 40 }}</span> <a class="post-link readmore" href="{{ post.url | prepend: site.baseurl }}">Read more</a></p>
{% endif %}</article>
{% endfor %}
</div>
<div class="container" style="min-width:1000px">
{% include pagination.html %}
</div>
</section>