forked from st4ple/solid-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
executable file
·30 lines (26 loc) · 897 Bytes
/
blog.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: blog
title: Open Data Blog
permalink: /blog/
---
<div class="spacing"></div>
<div class="container mtb">
<div class="row">
<div class="col-md-8">
<br>
<h4>Recent articles</h4>
<div class="hline"></div>
<div class="spacing"></div>
{% for post in site.categories['blog'] %}
<h4><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<time>{{ post.date | date: "%b %-d, %Y" }}</time>
{{ post.content | truncatewords:100}}
<p><a href="{{ post.url | prepend: site.baseurl }}">Read More</a></p>
<div class="spacing"></div>
{% endfor %}
</div> <!--/col-lg-8 -->
<div class="spacing"></div>
{% include sidebar2.html %}
</div> <!--/row -->
</div> <!--/container -->
<div class="spacing"></div>