summaryrefslogtreecommitdiff
path: root/examples/feedblog/templates/index.html
diff options
context:
space:
mode:
authorBenedict Eastaugh <benedict@eastaugh.net>2011-03-27 22:50:32 +0100
committerBenedict Eastaugh <benedict@eastaugh.net>2011-03-29 17:30:23 +0100
commit9ddde6c0fac02268ebf0c22a0ee3e22079a5d124 (patch)
tree35db8b8210f299b363f17f8d404ce3f8a3180a2d /examples/feedblog/templates/index.html
parent87234295cf67aa00e7b8128896a05212f2fa9cdc (diff)
downloadhakyll-9ddde6c0fac02268ebf0c22a0ee3e22079a5d124.tar.gz
Update feedblog example to work with Hakyll 3.
Diffstat (limited to 'examples/feedblog/templates/index.html')
-rw-r--r--examples/feedblog/templates/index.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/feedblog/templates/index.html b/examples/feedblog/templates/index.html
new file mode 100644
index 0000000..f20adb1
--- /dev/null
+++ b/examples/feedblog/templates/index.html
@@ -0,0 +1,14 @@
+<div id="posts">
+ <h1>Recent posts</h1>
+ <ul>
+ $posts$
+ </ul>
+ <p><a href="/posts.html">All posts&hellip;</a></p>
+</div>
+
+<div class="about">
+ <h1>About</h1>
+ <p>
+ This is a sample blog for educational purposes.
+ </p>
+</div>