diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-30 17:36:56 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-30 17:36:56 +0200 |
commit | 82931dd6661221f1d138f2de5af0668e9080ef26 (patch) | |
tree | 1e21cbce37b557031e138377cfc9c79ba8e651e8 /examples/categoryblog/templates | |
parent | 6fd37349cf0bbaffd85a3acf4526ae317913d989 (diff) | |
download | hakyll-82931dd6661221f1d138f2de5af0668e9080ef26.tar.gz |
Updated categoryblog example to Hakyll-2.x.
Diffstat (limited to 'examples/categoryblog/templates')
-rw-r--r-- | examples/categoryblog/templates/post.html | 2 | ||||
-rw-r--r-- | examples/categoryblog/templates/rss.xml | 9 | ||||
-rw-r--r-- | examples/categoryblog/templates/rssitem.xml | 5 |
3 files changed, 1 insertions, 15 deletions
diff --git a/examples/categoryblog/templates/post.html b/examples/categoryblog/templates/post.html index 8ecb87d..224a77d 100644 --- a/examples/categoryblog/templates/post.html +++ b/examples/categoryblog/templates/post.html @@ -1,5 +1,5 @@ <h1>$title</h1> by <em>$author</em> on <strong>$date</strong> -<div>Tagged as: $tags.</div> +<div>Posted in: $category.</div> $body diff --git a/examples/categoryblog/templates/rss.xml b/examples/categoryblog/templates/rss.xml deleted file mode 100644 index be918af..0000000 --- a/examples/categoryblog/templates/rss.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" ?> -<rss version="2.0"> - <channel> - <title>The SimpleBlog</title> - <link>http://example.com</link> - <description>Simple blog in hakyll</description> - $items - </channel> -</rss> diff --git a/examples/categoryblog/templates/rssitem.xml b/examples/categoryblog/templates/rssitem.xml deleted file mode 100644 index 48573d2..0000000 --- a/examples/categoryblog/templates/rssitem.xml +++ /dev/null @@ -1,5 +0,0 @@ -<item> - <title>$title</title> - <link>http://example.com/$url</link> - <description>$title by $author</description> -</item> |