summaryrefslogtreecommitdiff
path: root/examples/simpleblog
diff options
context:
space:
mode:
authorBenedict Eastaugh <benedict@eastaugh.net>2011-03-29 18:18:38 +0100
committerBenedict Eastaugh <benedict@eastaugh.net>2011-03-29 18:18:38 +0100
commit1a9c5460fe594c785fe7b206c14f038fdcb3dd82 (patch)
tree865b2df5a0e38a642c2d30d9e072c9d48e692207 /examples/simpleblog
parentaa3b3139864bc8c9b6e78dae0deadef3f3d6d4c3 (diff)
downloadhakyll-1a9c5460fe594c785fe7b206c14f038fdcb3dd82.tar.gz
Improve example template HTML slightly.
Diffstat (limited to 'examples/simpleblog')
-rw-r--r--examples/simpleblog/templates/index.html2
-rw-r--r--examples/simpleblog/templates/post.html3
2 files changed, 3 insertions, 2 deletions
diff --git a/examples/simpleblog/templates/index.html b/examples/simpleblog/templates/index.html
index 4978949..ebda08d 100644
--- a/examples/simpleblog/templates/index.html
+++ b/examples/simpleblog/templates/index.html
@@ -3,7 +3,7 @@
<ul>
$posts$
</ul>
- <a href="/posts.html">All posts...</a>
+ <a href="/posts.html">All posts&hellip;</a>
</div>
<div class="about">
diff --git a/examples/simpleblog/templates/post.html b/examples/simpleblog/templates/post.html
index e2864ba..dd0db95 100644
--- a/examples/simpleblog/templates/post.html
+++ b/examples/simpleblog/templates/post.html
@@ -1,4 +1,5 @@
<h1>$title$</h1>
-by <em>$author$</em> on <strong>$date$</strong>
+
+<p>by <em>$author$</em> on <strong>$date$</strong></p>
$body$