-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.18 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
---
layout: default
index: true
---
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-7">
<!-- Blog Post Links -->
<div class="blog-post-small">
{% for post in paginator.posts %}
<h3><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
<p><i class="fa fa-calendar"></i> {{ post.date | date: "%b %-d, %Y" }} |
{% if site.disqus_short_name and page.comments != false and site.disqus_show_comment_count == true %}
<a href="{% if page.index %}{{ root_url }}{{ post.url }}{% endif %}#disqus_thread">Comments</a>
{% endif %}</p>
{% if post.content contains '<!--more-->' %}
<p>{{ post.content | split:'<!--more-->' | first }}
<br><br>
<a href="{{ post.url }}" class="btn btn-primary btn-sm">Read More</a>
</p>
{% else %}
{{ post.content }}
{% endif %}
{% endfor %}
{% include pagination.html %}
</div>
<!-- End Blog Post Links -->
</div>
{% include sidebar.html %}
<div class="col-md-1"></div>
</div>