-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
30 lines (26 loc) · 1.17 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
26
27
28
29
30
---
layout: default
title: Home
permalink: /
---
<div class="loader-wrapper"><div class="loader"></div></div>
{% for post in site.posts limit:10%}
<div class="animated fadeInRight">
<div class="content-grid-info">
<div class="post-intro">
<h4><a id="post-title" href="{{ post.url | prepend: site.baseurl }}"> {{ post.title }} </a> <br>
<a href= "{{site.baseurl}}/posts/chronological/" id="post-details"><i class="fa fa-clock-o"></i> {{ post.date | date: "%-d %b %Y" }}</a>
<a href= "{{site.baseurl}}/{{post.author}}/" id="post-details"> <i class="fa fa-user"></i> {{ post.author }}</a>
<a href= "{{site.baseurl}}/posts/categories/" id="post-details"><i class="fa fa-tags"></i> {% for tag in post.tags %}{{ tag }} {% unless forloop.last %}, {% endunless %}{% endfor %}</a>
</h4>
<p>{% if post.desc.size > 0 %}
{{ post.desc }}
{% else %}
{{ post.excerpt | strip_html | xml_escape | truncatewords: 50 }}
{% endif %}</p>
<a href="{{ post.url | prepend: site.baseurl }}"><span></span>READ MORE</a>
</div>
</div>
</div>
{% endfor %}
<br>