diff options
| author | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:19:52 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:19:52 -0700 |
| commit | b42718f7d9aac88a3048c616193f81deff49e401 (patch) | |
| tree | f964fbae3d81cb6af155d612985f4b344267f4b5 /archives.html | |
| parent | attempt for a new design (diff) | |
| download | lumberjaph-b42718f7d9aac88a3048c616193f81deff49e401.tar.gz | |
First attempt with the new theme.
Diffstat (limited to '')
| -rw-r--r-- | archives.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/archives.html b/archives.html index 9d3389f..07567e1 100644 --- a/archives.html +++ b/archives.html @@ -1,12 +1,12 @@ --- -layout: default -title: Archives +layout: page +permalink: /articles/index.html +title: Articles +description: "An archive of posts sorted by date." --- -<div id="content"> - <div id="page"> - <h1>Archives</h1> - {% for post in site.posts %} - <h2><a href="{{ post.url }}">{{ post.title }}</a> <abbr>{{ post.date | date_to_string }}</abbr></h2> - {% endfor %} - </div> -</div> + +<ul class="post-list"> +{% for post in site.posts %} + <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> +{% endfor %} +</ul> |
