summaryrefslogtreecommitdiff
path: root/examples/brochure/templates
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-10 12:29:40 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-10 12:29:40 +0100
commitf08b2222ca756e8311c70862c8c753da007b6917 (patch)
tree07f8f3856f6fd948cbcc4536940db1885b4eee35 /examples/brochure/templates
parent8cec091e04e9bf1fa8cad01056d1c9cbed4fa44f (diff)
downloadhakyll-f08b2222ca756e8311c70862c8c753da007b6917.tar.gz
Update brochure example to hakyll3
Diffstat (limited to 'examples/brochure/templates')
-rw-r--r--examples/brochure/templates/default.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/brochure/templates/default.html b/examples/brochure/templates/default.html
index 794d449..8fb75cb 100644
--- a/examples/brochure/templates/default.html
+++ b/examples/brochure/templates/default.html
@@ -4,18 +4,18 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>MyAweSomeCompany - $title</title>
- <link rel="stylesheet" type="text/css" href="$root/css/default.css" />
- <link rel="stylesheet" type="text/css" href="$root/css/syntax.css" />
+ <title>MyAweSomeCompany - $title$</title>
+ <link rel="stylesheet" type="text/css" href="/css/default.css" />
+ <link rel="stylesheet" type="text/css" href="/css/syntax.css" />
</head>
<body>
- <h1>MyAweSomeCompany - $title</h1>
+ <h1>MyAweSomeCompany - $title$</h1>
<div id="navigation">
- <a href="$root/index.html">Home</a>
- <a href="$root/about.html">About</a>
- <a href="$root/code.html">Code</a>
+ <a href="/index.html">Home</a>
+ <a href="/about.html">About</a>
+ <a href="/code.html">Code</a>
</div>
- $body
+ $body$
</body>
</html>