-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (24 loc) · 825 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
---
title: Welcome
layout: default
---
{% for post in site.posts %}
<div class="list">
<div class="post-index">
<div class="post-image">
<a href="{{post.url}}">
<i class="fa fa-{{post.icon}} fa-fw"></i>
</a>
</div>
<div class="post-content">
<p class="post-index-title"><a href="{{site.baseurl}}{{post.url}}">{{post.title}}</a></p>
<p>
<span class="excerpt">{{ post.content | strip_html | strip_newlines | truncate: 90 }}</span>
</p>
<p class="post-detail">{{ post.date | date: '%B %d, %Y' }}
<a href="{{site.baseurl}}{{post.url}}/index.html#disqus_thread" data-disqus-identifier="{{post.url}}"></a>
</p>
</div>
</div>
</div>
{% endfor %}