-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblog.html
More file actions
27 lines (25 loc) · 846 Bytes
/
blog.html
File metadata and controls
27 lines (25 loc) · 846 Bytes
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
---
layout: default
title: Blog
permalink: /blog/
---
<div class="main-container blog">
<div class="archives container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h1>StarkNine Blog</h1>
{% for post in site.posts %}
{% capture month %}{{ post.date | date: '%m%Y' }}{% endcapture %}
{% capture nmonth %}{{ post.next.date | date: '%m%Y' }}{% endcapture %}
{% if month != nmonth %}
{% if forloop.index != 1 %}</ul>{% endif %}
<h3>{{ post.date | date: '%B %Y' }}</h3><ul>
{% endif %}
<li><a href="{{ post.url }}">{{ post.title }}</a>
<time>{{ post.date | date: "%e %B %Y" }}</time>
<p>{{ post.excerpt }}</p></li>
{% endfor %}
</div>
</div>
</div>
</div>