basic layout
authorLucian Mogosanu <lucian.mogosanu@gmail.com>
Wed, 17 Jul 2013 15:57:01 +0000 (18:57 +0300)
committerLucian Mogosanu <lucian.mogosanu@gmail.com>
Wed, 17 Jul 2013 15:57:01 +0000 (18:57 +0300)
css/default.css
templates/default.html

index e69de29..357a618 100644 (file)
@@ -0,0 +1,18 @@
+body {
+    margin: 0px auto 0px auto;
+    width: 700px;
+}
+
+#header {
+}
+
+#logo {
+}
+
+#navigation {
+       text-align: right;
+}
+
+#footer {
+       text-align: right;
+}
index ca0e51b..26abfe1 100644 (file)
@@ -5,11 +5,27 @@
 <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>The Tar Pit - $title$</title>
+       <link rel="stylesheet" type="text/css" href="/css/default.css" />
 </head>
 
 <body>
+       <div id="header">
+               <div id="logo">
+                       <a href="/">The Tar Pit</a>
+               </div>
+               <div id="navigation">
+                       TODO
+               </div>
+       </div>
 
-$body$
+       <div id="content">
+               $body$
+       </div>
 
+       <div id="footer">
+               Site proudly generated by
+               <a href="http://jaspervdj.be/hakyll">Hakyll</a>
+       </div>
 <!-- so far, so good -->
 </body>
+</html>