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/postitem.html | |
parent | 87234295cf67aa00e7b8128896a05212f2fa9cdc (diff) | |
download | hakyll-9ddde6c0fac02268ebf0c22a0ee3e22079a5d124.tar.gz |
Update feedblog example to work with Hakyll 3.
Diffstat (limited to 'examples/feedblog/templates/postitem.html')
-rw-r--r-- | examples/feedblog/templates/postitem.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/feedblog/templates/postitem.html b/examples/feedblog/templates/postitem.html index 0e62418..b752d96 100644 --- a/examples/feedblog/templates/postitem.html +++ b/examples/feedblog/templates/postitem.html @@ -1,4 +1,4 @@ <li> - <a href="$root/$url">$title</a> - - <em>$date</em> - by <em>$author</em> + <a href="/$url">$title$</a> + - <em>$date$</em> - by <em>$author$</em> </li> |