summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorFranck Cuny <franck@lumberjaph.net>2013-07-24 15:10:54 -0700
committerFranck Cuny <franck@lumberjaph.net>2013-07-24 15:10:54 -0700
commit8fd9861ef2f90c218b265fd122ba65d64133ae43 (patch)
tree2a61574174009828bd8b78ba319d3707a2bf5eb9 /_layouts
parentSome small fixes (diff)
downloadlumberjaph-8fd9861ef2f90c218b265fd122ba65d64133ae43.tar.gz
attempt for a new design
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html49
-rw-r--r--_layouts/post.html19
2 files changed, 36 insertions, 32 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 3bd47db..812ebf5 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -25,25 +25,44 @@
<body>
-<div id="site">
- <div id="header">
- <h1>
- <a href="/">I'm a lumberjaph and I'm OK.</a>
- <span id="navigation">
- <a href="/about/">About</a>
- <a href="/archives.html">Archives</a>
- </span>
- </h1>
+ <div id="container">
+
+ <div id="menu">
+ <div id="menu-inner">
+ <div class="you">
+ <h2>I'm a lumberjaph and I'm OK</h2>
+ </div>
+ <div class="main">
+ <h2>Here</h2>
+ <ul>
+ <li><a href="/archives.html">Archives</a></li>
+ <li><a href="/about">About</a></li>
+ </ul>
+ </div>
+ <div class="info">
+ <h2>Elsewhere</h2>
+ <ul>
+ <li>Twitter</li>
+ <li>GitHub</li>
+ </ul>
+ </div>
+ </div>
+ </div>
+
+ <div id="content">
+ {{ content }}
+ </div>
+
</div>
- {{ content }}
+ <div class="clear"></div>
<footer>
- <div id="footer">
- © 2008-2012
- <a href="/about/">Franck Cuny</a>
+ <div id="footer">
+ <div id="footer-left">
+ </div>
+ </div>
</footer>
-</div>
-
+
</body>
</html>
diff --git a/_layouts/post.html b/_layouts/post.html
index 2b83f8a..25c2ace 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,21 +2,6 @@
layout: default
---
-<div id="content">
- <div id="page">
- <h1 class="emphnext">
- <a href="{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a>
- <span class="post-date">{{ page.date | date_to_string }}<span>
- </h1>
+<h1><a href="{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h1>
- <article>
- {{ content }}
- </article>
-
- <div id="pagination">
- <a href="/">Home</a>
- |
- <a href="/archives.html">Archives</a>
- </div>
- </div>
-</div>
+<article>{{ content }}</article>