diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-02-12 19:29:35 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-02-12 19:29:35 +0100 |
commit | 7fa4011d348d271669f73ba3d8bdcbbb074066ae (patch) | |
tree | b1ec16805e69e31ea0e7696efa056749bbc4c09b /examples | |
parent | 6611e86ac5db5790b271f0b3e41376a0affdbb80 (diff) | |
download | hakyll-7fa4011d348d271669f73ba3d8bdcbbb074066ae.tar.gz |
Gave tutorials proper names and fixed rss link.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hakyll/tutorial1.markdown | 2 | ||||
-rw-r--r-- | examples/hakyll/tutorial2.markdown | 2 | ||||
-rw-r--r-- | examples/hakyll/tutorial3.markdown | 2 | ||||
-rw-r--r-- | examples/hakyll/tutorial4.markdown | 4 | ||||
-rw-r--r-- | examples/hakyll/tutorial5.markdown | 2 | ||||
-rw-r--r-- | examples/hakyll/tutorial6.markdown | 2 | ||||
-rw-r--r-- | examples/rssblog/templates/default.html | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/examples/hakyll/tutorial1.markdown b/examples/hakyll/tutorial1.markdown index f228848..d9827da 100644 --- a/examples/hakyll/tutorial1.markdown +++ b/examples/hakyll/tutorial1.markdown @@ -1,5 +1,5 @@ --- -title: Tutorial (Part I) +title: Brochure what: explains how to create a simple brochure site --- diff --git a/examples/hakyll/tutorial2.markdown b/examples/hakyll/tutorial2.markdown index eccc721..87dc3a0 100644 --- a/examples/hakyll/tutorial2.markdown +++ b/examples/hakyll/tutorial2.markdown @@ -1,5 +1,5 @@ --- -title: Tutorial (Part II) +title: MorePages what: elaborates a little on writing pages and templates --- diff --git a/examples/hakyll/tutorial3.markdown b/examples/hakyll/tutorial3.markdown index 28636d9..a782be1 100644 --- a/examples/hakyll/tutorial3.markdown +++ b/examples/hakyll/tutorial3.markdown @@ -1,5 +1,5 @@ --- -title: Tutorial (Part III) +title: SimpleBlog what: creates a simple blog --- diff --git a/examples/hakyll/tutorial4.markdown b/examples/hakyll/tutorial4.markdown index 4065fd7..1dfa9a0 100644 --- a/examples/hakyll/tutorial4.markdown +++ b/examples/hakyll/tutorial4.markdown @@ -1,5 +1,5 @@ --- -title: Tutorial (Part IV) +title: RSSBlog what: adds an RSS feed to the blog from the previous tutorial --- @@ -98,7 +98,7 @@ documents, so we'll do this. In `templates/default.html`: <link rel="alternate" type="application/rss+xml" title="SimpleBlog" - href="http://example.com/rss.xml" /> + href="$root/rss.xml" /> </head> ~~~~~~ diff --git a/examples/hakyll/tutorial5.markdown b/examples/hakyll/tutorial5.markdown index 739d311..429a589 100644 --- a/examples/hakyll/tutorial5.markdown +++ b/examples/hakyll/tutorial5.markdown @@ -1,5 +1,5 @@ --- -title: Tutorial (Part V) +title: TagBlog what: adds tags and context manipulations to our blog --- diff --git a/examples/hakyll/tutorial6.markdown b/examples/hakyll/tutorial6.markdown index df19a64..5155d40 100644 --- a/examples/hakyll/tutorial6.markdown +++ b/examples/hakyll/tutorial6.markdown @@ -1,5 +1,5 @@ --- -title: Tutorial (Part VI) +title: CategoryBlog what: explains how to use categories instead of tags --- diff --git a/examples/rssblog/templates/default.html b/examples/rssblog/templates/default.html index 049a37a..1772458 100644 --- a/examples/rssblog/templates/default.html +++ b/examples/rssblog/templates/default.html @@ -9,7 +9,7 @@ <link rel="alternate" type="application/rss+xml" title="SimpleBlog" - href="http://example.com/rss.xml" /> + href="$root/rss.xml" /> </head> <body> <h1>SimpleBlog - $title</h1> |