Skip to content

Commit 4e075dc

Browse files
committed
Add rudimentary archive page
1 parent 24a6e0e commit 4e075dc

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

archive.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: default
3+
title: CSS Wizardry archive
4+
page-class: page--archive
5+
permalink: /archive/
6+
---
7+
8+
<h1 class="accessibility">CSS Wizardry posts archive</h1>
9+
10+
<section class="posts">
11+
<ul class="block-list">
12+
{% for post in site.posts %}
13+
<li>
14+
<span class="post__time">{{ post.date | date: "%d %B, %Y" }}</span>
15+
<h2 class="post__title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
16+
</li>
17+
{% endfor %}
18+
</ul>
19+
</section>

0 commit comments

Comments
 (0)