summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2014-12-04 20:02:23 -0800
committerFranck Cuny <franckcuny@gmail.com>2014-12-04 20:03:12 -0800
commit9fe2ac2521294d97cc7273a8ba0044943896d50f (patch)
tree2c0acb5d9a89f30c4a26339e61cb4038338adfcf /_layouts/post.html
parentupdate rsync command for publishing (diff)
downloadlumberjaph-9fe2ac2521294d97cc7273a8ba0044943896d50f.tar.gz
Update the theme.
Simpler and lighter theme. Not perfect yet, there's still more work to do on the resume page and a few other things to fix (images in post, etc).
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 1801d73..0af49c3 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,14 +2,14 @@
layout: default
---
-<article id="entry">
+<header>
+ <h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
+</header>
- <header class="entry-title">
- <h1>{{ page.title }}</h1>
- </header>
+<section>
- <section>
- {{ content }}
- </section>
+ <div id="entry"> {{ content }} </div>
-</article>
+ {% include footer.html %}
+
+</section>