-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
23 lines (23 loc) · 938 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
---
layout: page
section: 'Blog'
permalink: '/blog/'
---
<div class="row">
<div class="small-12 columns">
{% for post in site.posts %}
<div class="media-object">
<div class="media-object-section show-for-medium">
<div class="thumbnail">
<a href="{{ post.url }}"><img {%if post.image %}src="{{ post.image.url }}" alt="{{ post.image.alt }}"{% else %}src="/assets/images/icon256.png" alt="Site logo"{% endif %}" style="width: 150px; height:150px;"></a>
</div>
</div>
<div class="media-object-section main-section">
<h4 class="subheader float-right">{{ post.date | date: "%-d %B %Y" }}</h4>
<a href="{{ post.url }}"><h3>{{ post.title }}</h3></a>
<p class="text-justify">{{ post.excerpt | remove: '<p>' | remove: '</p>' }} <a href="{{ post.url }}">Read more <i class="fa fa-arrow-circle-right"></i></a></p>
</div>
</div>
{% endfor %}
</div>
</div>