-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
37 lines (34 loc) · 975 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
36
37
---
layout: default
permalink: /blog/
title: Ken's Ramblings
class: blog
active: blog
excerpt: Ken's ramblings of web development and seo/sem marketing tips and tricks
---
<div class="page Blog">
<div class="container">
<div class="text-right subscribe">
<a href="/feed.xml">Subscribe <span class="zocial-rss"></span></a>
</div>
{% for post in site.posts %}
{% capture curr_date %}{{ post.date | date: "%B %Y" }}{% endcapture %}
{% if curr_date != prev_date %}
{% unless forloop.first %}
</ul>
{% endunless %}
<h3>
{{ post.date | date: "%B %Y" }}
</h3>
<ul>
{% capture prev_date %}{{ post.date | date: "%B %Y" }}{% endcapture %}
{% endif %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% if forloop.last %}
</ul>
{% endif %}
{% endfor %}
</div>
</div>