diff options
author | Benedict Eastaugh <benedict@eastaugh.net> | 2011-03-27 22:50:32 +0100 |
---|---|---|
committer | Benedict Eastaugh <benedict@eastaugh.net> | 2011-03-29 17:30:23 +0100 |
commit | 9ddde6c0fac02268ebf0c22a0ee3e22079a5d124 (patch) | |
tree | 35db8b8210f299b363f17f8d404ce3f8a3180a2d /examples/feedblog/templates/default.html | |
parent | 87234295cf67aa00e7b8128896a05212f2fa9cdc (diff) | |
download | hakyll-9ddde6c0fac02268ebf0c22a0ee3e22079a5d124.tar.gz |
Update feedblog example to work with Hakyll 3.
Diffstat (limited to 'examples/feedblog/templates/default.html')
-rw-r--r-- | examples/feedblog/templates/default.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/feedblog/templates/default.html b/examples/feedblog/templates/default.html index 1772458..b7a3c1e 100644 --- a/examples/feedblog/templates/default.html +++ b/examples/feedblog/templates/default.html @@ -4,20 +4,20 @@ <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>SimpleBlog - $title</title> - <link rel="stylesheet" type="text/css" href="$root/css/default.css" /> + <title>SimpleBlog - $title$</title> + <link rel="stylesheet" type="text/css" href="/css/default.css" /> <link rel="alternate" type="application/rss+xml" title="SimpleBlog" - href="$root/rss.xml" /> + href="/rss.xml" /> </head> <body> - <h1>SimpleBlog - $title</h1> + <h1>SimpleBlog - $title$</h1> <div id="navigation"> - <a href="$root/index.html">Home</a> - <a href="$root/posts.html">All posts</a> + <a href="/index.html">Home</a> + <a href="/posts.html">All posts</a> </div> - $body + $body$ </body> </html> |