-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.html
35 lines (29 loc) · 1010 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
31
32
33
34
35
---
layout: default
title: Blog
permalink: /blog/
---
<div class="content">
{% for post in site.categories['blog'] %}
<article>
<! -- Blog Post -->
<header class="page-heading">
<a href="{{ post.url | prepend: site.baseurl }}"><h1>{{ post.title }}</h1></a>
<address>
<p><csmall>{{ post.date | date: "%b %-d, %Y" }}</csmall></p>
</address>
<div class="clear"></div>
</header>
{% if post.img %}
<a href="{{ post.url | prepend: site.baseurl }}">
<img class="img-responsive" src="{{ "/img/" | prepend: site.baseurl }}{{ post.img }}">
</a>
{% endif %}
<p class="excerpt">{{ post.excerpt | remove: '<p>' | remove: '</p>' }}</p>
<p><a href="{{ post.url | prepend: site.baseurl }}">[Read More]</a></p>
<div class="hline"></div>
<div class="spacing"></div>
<div class="clear"></div>
</article>
{% endfor %}
</div>