summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@lumberjaph.net>2013-07-25 18:35:25 -0700
committerFranck Cuny <franck@lumberjaph.net>2013-07-25 18:35:25 -0700
commit3d46aca2693381e81045210c41e782431acd1ed9 (patch)
tree410067ba6ce89d6a371e1c06643a14b2bede85e5 /index.html
parentnew post - patch.pm (diff)
parentAdd a page with my talks. (diff)
downloadlumberjaph-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 'index.html')
-rw-r--r--index.html22
1 files changed, 9 insertions, 13 deletions
diff --git a/index.html b/index.html
index 7d522b2..482c2e4 100644
--- a/index.html
+++ b/index.html
@@ -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>