mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
12 lines
No EOL
506 B
HTML
12 lines
No EOL
506 B
HTML
---
|
|
layout: page
|
|
permalink: /articles/index.html
|
|
title: Articles
|
|
description: "An archive of posts sorted by date."
|
|
---
|
|
|
|
{% for post in site.posts %}
|
|
<ul class="post-list">
|
|
<li><article itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost"><a href="{{ site.url }}{{ post.url }}">{{ post.title }} <span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time></span></a></article></li>
|
|
</ul>
|
|
{% endfor %} |