-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 1.31 KB
/
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
---
layout: default
---
{% include start.html %}
{% for post in paginator.posts %}
<article class="post post-item masonry-item col-lg-4 col-sm-6 col-xs-12">
<div class="post-photo">
<img src="{{post.img}}" alt="...">
</div>
<div class="post-content animated" data-animation="fadeInUp">
<div class="meta">
<span><i class="fa fa-user"></i><a href="#">{{post.author}}</a></span>
<span><i class="fa fa-tag"></i><a href="#">{{post.tag}}</a></span>
</div>
<div class="date">{{ post.date | date_to_string }}</div>
<h1><a href="{% if site.baseurl == "/" %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}">{{post.title}}</a></h1>
<p>{{ post.content | strip_html | truncatewords:50 }}</p>
<a href="{% if site.baseurl == "/" %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}" class="btn btn-primary btn-xs"><span>Read more</span><i class="ti-arrow-right"></i></a>
</div>
</article>
{% endfor %}
{% include mobile_nav.html %}