-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.3 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: default
title: Welcome to my Blog
---
{% for post in site.posts %}
{% if post.status == 'published' %}
<div class="col-sm-6 post-archive">
<article class="post-entry-wrap">
<div class="post-entry clearfix">
<div class="post-header">
<h2>
<a href="{{ post.url }}">
<img src="{{ post.image }}" alt="">
<span class="post-title">{{ post.title }}</span>
</a>
</h2>
</div>
<div class="post-meta pad20">
<div class="row">
<div class="col-xs-6">
<span class="post-meta-date font12">
<i class="fa fa-calendar mr5"></i>
{{ post.date | date_to_string }}
</span>
</div>
<div class="col-xs-6 text-right">
<div class="post-meta-category">
{% for tag in post.tags %}
<a href="/tag/{{ tag }}" class="label label-danger ml5">
<i class="fa fa-tag mr5"></i>
{{ tag }}
</a>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</article>
</div>
{% endif %}
{% endfor %}