-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (20 loc) · 857 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
---
layout: index
title: A Thousand Dollar Truffle
tagline: Don’t wait to lose weight
---
{% include JB/setup %}
{% for post in site.posts %}
{% include blog_head.html %}
<!-- Blog Post Template on Index page -->
<h2>
<a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a>
</h2>
<p class="lead">
Tagged under: {{post.tags | array_to_sentence_string}}
</p>
<p><span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date_to_string }}</p>
{{ post.content | truncatewords: 6 }}
<a class="btn btn-primary" href="{{ BASE_PATH }}{{ post.url }}">Read More <span class="glyphicon glyphicon-chevron-right"></span></a>
<hr>
{% endfor %}