diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-10 21:45:36 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-10 21:45:36 +0100 |
commit | 4e3c26b01c369a3a70467ae4f925427775bb2726 (patch) | |
tree | cce1e0084d95a5a57cf575e3faf1e21aa728021a /examples/rssblog/templates/postitem.html | |
parent | 15733a1a1ab5f01ae7595506a8809317326f362d (diff) | |
download | hakyll-4e3c26b01c369a3a70467ae4f925427775bb2726.tar.gz |
Migrated examples to use $root.
Diffstat (limited to 'examples/rssblog/templates/postitem.html')
-rw-r--r-- | examples/rssblog/templates/postitem.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rssblog/templates/postitem.html b/examples/rssblog/templates/postitem.html index a14687b..0e62418 100644 --- a/examples/rssblog/templates/postitem.html +++ b/examples/rssblog/templates/postitem.html @@ -1,4 +1,4 @@ <li> - <a href="/$url">$title</a> + <a href="$root/$url">$title</a> - <em>$date</em> - by <em>$author</em> </li> |