summaryrefslogtreecommitdiff
path: root/examples/tagblog/templates/index.html
diff options
context:
space:
mode:
authorBenedict Eastaugh <benedict@eastaugh.net>2011-03-28 21:59:50 +0100
committerBenedict Eastaugh <benedict@eastaugh.net>2011-03-29 17:30:23 +0100
commit356191fcc743b9dace8d938a1556e22bbed50a10 (patch)
tree314667b215195bb7ac002724ff0b82430040cb7b /examples/tagblog/templates/index.html
parentc288567388c6ebcb75f369bee60f19664e855c9c (diff)
downloadhakyll-356191fcc743b9dace8d938a1556e22bbed50a10.tar.gz
Update tagblog example to work with Hakyll 3.
Diffstat (limited to 'examples/tagblog/templates/index.html')
-rw-r--r--examples/tagblog/templates/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/tagblog/templates/index.html b/examples/tagblog/templates/index.html
new file mode 100644
index 0000000..7152d02
--- /dev/null
+++ b/examples/tagblog/templates/index.html
@@ -0,0 +1,19 @@
+<div id="posts">
+ <h1>Recent posts</h1>
+ <ul>
+ $posts$
+ </ul>
+ <p><a href="/posts.html">All posts&hellip;</a></p>
+
+ <h1>Tags</h1>
+ <div>
+ $tagcloud$
+ </div>
+</div>
+
+<div class="about">
+ <h1>About</h1>
+ <p>
+ This is a sample blog for educational purposes.
+ </p>
+</div>