summaryrefslogtreecommitdiff
path: root/examples/simpleblog/templates/index.html
diff options
context:
space:
mode:
authorBenedict Eastaugh <benedict@eastaugh.net>2011-03-26 19:24:03 +0000
committerBenedict Eastaugh <benedict@eastaugh.net>2011-03-29 17:30:23 +0100
commit87234295cf67aa00e7b8128896a05212f2fa9cdc (patch)
tree6da436d90be303e594e47472e5f72ca15607f7bb /examples/simpleblog/templates/index.html
parent379cd0eed48848ddf67c3de4def4f807372e713c (diff)
downloadhakyll-87234295cf67aa00e7b8128896a05212f2fa9cdc.tar.gz
Update simpleblog example to work with Hakyll 3.
Diffstat (limited to 'examples/simpleblog/templates/index.html')
-rw-r--r--examples/simpleblog/templates/index.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/simpleblog/templates/index.html b/examples/simpleblog/templates/index.html
new file mode 100644
index 0000000..4978949
--- /dev/null
+++ b/examples/simpleblog/templates/index.html
@@ -0,0 +1,14 @@
+<div id="posts">
+ <h1>Recent posts</h1>
+ <ul>
+ $posts$
+ </ul>
+ <a href="/posts.html">All posts...</a>
+</div>
+
+<div class="about">
+ <h1>About</h1>
+ <p>
+ This is a sample blog for educational purposes.
+ </p>
+</div>