forked from federico-garcia/thelaxtsamurai.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (18 loc) · 647 Bytes
/
index.html
File metadata and controls
20 lines (18 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: default
---
<div class="home">
<div class="posts">
{% for post in paginator.posts %}
<div class="post parag">
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link"><h3 class="h3 post-title">{{ post.title }}</h3></a>
<p class="parag">{{ post.date | date: "%b %-d, %Y" }} | Author: <a href="/about">{{site.author.name}}</a> </p>
<p class="parag">
{{ post.excerpt }}
<p> <a href="{{ post.url | prepend: site.baseurl }}" class="post-link">Read more...></a></p>
</p>
</div>
{% endfor %}
</div>
{% include pagination.html %}
</div>