diff options
author | Benedict Eastaugh <benedict@eastaugh.net> | 2011-03-28 21:59:50 +0100 |
---|---|---|
committer | Benedict Eastaugh <benedict@eastaugh.net> | 2011-03-29 17:30:23 +0100 |
commit | 356191fcc743b9dace8d938a1556e22bbed50a10 (patch) | |
tree | 314667b215195bb7ac002724ff0b82430040cb7b /examples/tagblog/templates/post.html | |
parent | c288567388c6ebcb75f369bee60f19664e855c9c (diff) | |
download | hakyll-356191fcc743b9dace8d938a1556e22bbed50a10.tar.gz |
Update tagblog example to work with Hakyll 3.
Diffstat (limited to 'examples/tagblog/templates/post.html')
-rw-r--r-- | examples/tagblog/templates/post.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/tagblog/templates/post.html b/examples/tagblog/templates/post.html index 8ecb87d..3c47f1b 100644 --- a/examples/tagblog/templates/post.html +++ b/examples/tagblog/templates/post.html @@ -1,5 +1,5 @@ -<h1>$title</h1> -by <em>$author</em> on <strong>$date</strong> -<div>Tagged as: $tags.</div> +<h1>$title$</h1> +by <em>$author$</em> on <strong>$date$</strong> +<div>Tagged as: $prettytags$.</div> -$body +$body$ |