summaryrefslogtreecommitdiff
path: root/_layouts/post.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 /_layouts/post.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 '')
-rw-r--r--_layouts/post.html40
1 files changed, 21 insertions, 19 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 3422dbe..47e12a4 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,28 +1,30 @@
---
layout: default
---
-<h2 class="post-title"><a href="{{ page.url }}">{{ page.title }}</a></h2>
+<h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
-<p class="date">{{ page.date | date_to_string }}</p>
+{% if page.previous.url %}
+ <p id="bigleft"><a href="{{page.previous.url}}">&laquo;</a></p><br />
+{% endif %}
+{% if page.next.url %}
+ <p id="bigright"><a href="{{page.next.url}}">&raquo;</a></p>
+{% endif %}
-{{ content }}
+<div id="entry">
+ {{ content }}
-<hr />
+ <p class="timestamp">
+ {% if page.previous.url %}
+ <a href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a> |
+ {% endif %}
-<div id="call-to-action">
- <h3>Read More</h3>
- <ul>
- {% for post in site.related_posts %}{% if post.url != page.url %}
- <li>
- <a href="{{ post.url }}">{{ post.title }}</a>
- ({{ post.date | date_to_string }})
- </li>
- {% endif %}{% endfor %}
- </ul>
-</div>
+ {{ page.date | date_to_string }}
+
+ {% if page.next.url %}
+ | <a href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
+ {% endif %}
+ </p>
-<hr/>
+</div>
-<footer>
- <span>I sleep all night and I work all day.</span><br/>
-</footer>
+{% include footer.html %}