-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.html
25 lines (20 loc) · 896 Bytes
/
archives.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
---
layout: page
title: Archives
---
<h4>There are {{ site.posts | size }} published articles. </h4>
<ul>
{% for post in site.posts %}
<div class="post-list">
<!-- <li>
<span class="post-list-date">{{ post.date | date_to_string }}</span>
<a href="{{ post.url | absolute_url }}"> <span class="post-title"> {{ post.title }} </span> </a>
</li> -->
<!-- <li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a> - <span class="post-list-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time></li> -->
<li>
<time class="post-list-date" datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time>
<a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a>
</li>
</div>
{% endfor %}
</ul>