diff options
| author | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:35:25 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:35:25 -0700 |
| commit | 3d46aca2693381e81045210c41e782431acd1ed9 (patch) | |
| tree | 410067ba6ce89d6a371e1c06643a14b2bede85e5 /archives.html | |
| parent | new post - patch.pm (diff) | |
| parent | Add a page with my talks. (diff) | |
| download | lumberjaph-3d46aca2693381e81045210c41e782431acd1ed9.tar.gz | |
Merge branch 'design'
* design:
Add a page with my talks.
Remove more files.
use index.atom for our feed.
add openid to our header.
remove unused layout templates.
I don't need tags.
Remove useless empty page.
First attempt with the new theme.
attempt for a new design
Diffstat (limited to 'archives.html')
| -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> |
