diff options
| author | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-12-07 11:36:20 +0100 |
|---|---|---|
| committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-12-07 11:36:20 +0100 |
| commit | 251e1126c38eafca2890c3bfd268956624cf3397 (patch) | |
| tree | 32b67ab1d49b9549809db3fae7946fbb0e3e6336 /data/example/templates/default.html | |
| parent | 7d20671bb3ff7b970ff7556ed18fd5714ab962da (diff) | |
| download | hakyll-251e1126c38eafca2890c3bfd268956624cf3397.tar.gz | |
Bit of work on example site
Diffstat (limited to 'data/example/templates/default.html')
| -rw-r--r-- | data/example/templates/default.html | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/data/example/templates/default.html b/data/example/templates/default.html index 44d1cd0..4b7d8af 100644 --- a/data/example/templates/default.html +++ b/data/example/templates/default.html @@ -9,13 +9,23 @@ <link rel="stylesheet" type="text/css" href="/css/syntax.css" /> </head> <body> - <h1>MyAweSomeCompany - $title$</h1> - <div id="navigation"> - <a href="/">Home</a> - <a href="/about.html">About</a> - <a href="/code.html">Code</a> + <div id="header"> + <div id="logo"> + <a href="/">My Hakyll Blog</a> + </div> + <div id="navigation"> + <a href="/">Home</a> + <a href="/about.html">About</a> + <a href="/code.html">Code</a> + </div> </div> - $body$ + <div id="content"> + $body$ + </div> + <div id="footer"> + Site proudly generated by + <a href="http://jaspervdj.be/hakyll">Hakyll</a> + </div> </body> </html> |
