-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
31 lines (28 loc) · 849 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
---
layout: default
title: Blog
permalink: /blog/
---
<div class="section">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h1>{{ page.title }}</h1>
<ul>
{% for post in site.posts %}
<li class="mod push-top-half">
<h3>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
<p class="meta">{{ post.date | date: "%b %-d, %Y" }}</p>
</li>
{% endfor %}
</ul>
<p class="push-top-half">
Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a>
for those who share our love for the old-school.
</p>
</div> <!-- .col -->
</div> <!-- .row -->
</div> <!-- .container -->
</div> <!-- .section -->