diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2013-11-26 10:36:10 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2013-11-26 10:36:10 -0800 |
| commit | 8ddf2e94df70707b458528a437759b96046d3e01 (patch) | |
| tree | d442818d92d3c9c6f7fcdc92857a1228963849a1 /index.html | |
| parent | Don't need to use the IP in the makefile. (diff) | |
| download | lumberjaph-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.html | 40 |
1 files changed, 26 insertions, 14 deletions
@@ -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}}">«</a></p><br /> +{% endif %} +{% if post.next.url %} + <p id="bigright"><a href="{{post.next.url}}">»</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}}">« {{post.previous.title}}</a> | + {% endif %} + + {{ post.date | date_to_string }} + + {% if post.next.url %} + | <a href="{{post.next.url}}">{{post.next.title}} »</a> + {% endif %} + </p> + +</div> + +{% include footer.html %} |
