summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2013-11-26 10:36:10 -0800
committerFranck Cuny <franck.cuny@gmail.com>2013-11-26 10:36:10 -0800
commit8ddf2e94df70707b458528a437759b96046d3e01 (patch)
treed442818d92d3c9c6f7fcdc92857a1228963849a1 /index.html
parentDon't need to use the IP in the makefile. (diff)
downloadlumberjaph-8ddf2e94df70707b458528a437759b96046d3e01.tar.gz
Huge update.
Moved all posts from textile to markdown. Updated all the CSS and styles. Added a new page for the resume.
Diffstat (limited to 'index.html')
-rw-r--r--index.html40
1 files changed, 26 insertions, 14 deletions
diff --git a/index.html b/index.html
index b57082e..ef048d2 100644
--- a/index.html
+++ b/index.html
@@ -1,21 +1,33 @@
---
layout: default
-title: I'm a lumberjaph
---
-<h2>writing</h2>
+{% assign post = site.posts.first %}
-<ul>
-{% for post in site.posts %}
-<li>
- <a href="{{ post.url }}">{{ post.title }}</a>
- <span class="date">{{ post.date | date_to_string }}</span>
-</li>
-{% endfor %}
-</ul>
+<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
-<hr/>
+{% if post.previous.url %}
+ <p id="bigleft"><a href="{{post.previous.url}}">&laquo;</a></p><br />
+{% endif %}
+{% if post.next.url %}
+ <p id="bigright"><a href="{{post.next.url}}">&raquo;</a></p>
+{% endif %}
-<footer>
- <span>I sleep all night and I work all day.</span><br/>
-</footer>
+<div id="entry">
+ {{ post.content }}
+
+ <p class="timestamp">
+ {% if post.previous.url %}
+ <a href="{{post.previous.url}}">&laquo; {{post.previous.title}}</a> |
+ {% endif %}
+
+ {{ post.date | date_to_string }}
+
+ {% if post.next.url %}
+ | <a href="{{post.next.url}}">{{post.next.title}} &raquo;</a>
+ {% endif %}
+ </p>
+
+</div>
+
+{% include footer.html %}