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 /index.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-- | index.html | 22 |
1 files changed, 9 insertions, 13 deletions
@@ -1,16 +1,12 @@ --- -layout: default -title: I'm a lumberjaph +layout: page +title: Latest Posts +description: "A simple and clean responsive Jekyll theme for words and photos." +tags: [Jekyll, theme, themes, responsive, blog, minimalism] --- -{% assign first_post = site.posts.first %} -<div id="content"> - <div id="page"> - <h1 class="emphnext"> - <a href="{{ first_post.url }}" rel="bookmark" title="{{ first_post.title }}">{{ first_post.title }}</a> - <span class="post-date">{{ first_post.date | date_to_string }}<span> - </h1> - - <article>{{ first_post.content }}</article> - </div> -</div> +<ul class="post-list"> + {% for post in site.posts limit:10 %} + <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> |
