forked from jackfranklin/javascriptplayground.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchives.html
More file actions
26 lines (23 loc) · 714 Bytes
/
archives.html
File metadata and controls
26 lines (23 loc) · 714 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
---
layout: page
title: Archives
---
<p>Below are all the posts on the JavaScript Playground.</p>
<p>You can use the search box below to find what you're looking for.</p>
<form class="search-form">
<input type="text" name="searchterm" placeholder="backbone" />
</form>
<ul class="archives">
{% for post in site.posts %}
<li>
<h4><a href="{{post.url}}">{{post.title}}</a></h4>
<p class="post_date">{{ post.date | date: "%d %B %Y" }} by
{% if post.author %}
<a href="http://twitter.com/{{post.author_twitter}}">{{ post.author }}</a>
{% else %}
<a href="http://twitter.com/Jack_Franklin">Jack Franklin</a>
{% endif %}
</p>
</li>
{% endfor %}
</ul>