diff options
author | Benedict Eastaugh <benedict@eastaugh.net> | 2011-03-29 18:18:38 +0100 |
---|---|---|
committer | Benedict Eastaugh <benedict@eastaugh.net> | 2011-03-29 18:18:38 +0100 |
commit | 1a9c5460fe594c785fe7b206c14f038fdcb3dd82 (patch) | |
tree | 865b2df5a0e38a642c2d30d9e072c9d48e692207 /examples/tagblog/templates | |
parent | aa3b3139864bc8c9b6e78dae0deadef3f3d6d4c3 (diff) | |
download | hakyll-1a9c5460fe594c785fe7b206c14f038fdcb3dd82.tar.gz |
Improve example template HTML slightly.
Diffstat (limited to 'examples/tagblog/templates')
-rw-r--r-- | examples/tagblog/templates/post.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/tagblog/templates/post.html b/examples/tagblog/templates/post.html index 3c47f1b..0233fc1 100644 --- a/examples/tagblog/templates/post.html +++ b/examples/tagblog/templates/post.html @@ -1,5 +1,7 @@ <h1>$title$</h1> -by <em>$author$</em> on <strong>$date$</strong> -<div>Tagged as: $prettytags$.</div> + +<p>by <em>$author$</em> on <strong>$date$</strong></p> + +<p>Tagged as: $prettytags$.</p> $body$ |