- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchive.html
More file actions
Latest commit
18 lines (18 loc) · 578 Bytes
/
Copy patharchive.html
File metadata and controls
18 lines (18 loc) · 578 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: archive
title: Personal Website of Seyi Ogunyemi
---
<h2class="title">Archive</h2>
<olclass="content">
{% for post in site.posts %}
{% if forloop.last %}
<liclass="last">
{% else %}
<li>
{% endif %}
<spanclass="title"><ahref="{{ post.url }}">{{ post.title }}</a></span>
<spanclass="summary">{{ post.summary }}</span>
<timeclass="date" datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: "<em>%d</em><small>%b<br>%Y</small>" }}</time>
</li>
{% endfor %}
</ol>