-
Notifications
You must be signed in to change notification settings - Fork 84
/
index.html
44 lines (39 loc) · 944 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
35
36
37
38
39
40
41
42
43
44
---
layout: default
---
<section>
<div class="jumbotron">
<div class="container">
{{site.description}}
</div>
</div>
</section>
<section id="page-content">
<div class="container">
<div class="post-list">
{% for post in site.posts %}
<div class="post-box">
<div class="post-title">
<a class="post-title" href="{{post.url | prepend:site.baseurl }}" > {{ post.title }}</a>
</div>
<div class="post-excerpt">
{{ post.content | strip_html | truncatewords:20}}
</div>
<div class="posted">
posted on
<span class="posted-on">
{{ post.date | date: "%A, %B %-d, %Y" }}
</span>
<span class="in">
in
</span>
<span class="categories-on">
{% for category in post.categories%}
{{category}} {% if forloop.last %}{% else %},{% endif %}
{% endfor %}
</span>
</div>
</div>
{% endfor %}
</div>
</section>