forked from shoes/shoesrb.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
24 lines (22 loc) · 687 Bytes
/
Copy pathblog.html
File metadata and controls
24 lines (22 loc) · 687 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
---
layout: default
title: Blog
permalink: /blog/
---
<div class='jumbotron'>
<h1>The Shoes Blog</h1>
<p>Shoes blogs that we know about. Here's all the posts we have so far:</p>
</div>
<div class='row'>
<div class="col-md-12">
<p>Shoes 3.3 has it's own blog <a href="https://walkabout.mvmanila.com">Walkabout Shoes</a>
where you can see what's happening with the Red (original) Shoes. Comments are allowed.
</p>
<p>Shoes 4 announcements:</p>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>