summaryrefslogtreecommitdiff
path: root/examples/rssblog/templates/default.html
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-02 19:57:12 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-02 19:57:12 +0100
commitac8e89cc1904d25e118c41b441bbb4008583b78a (patch)
treee4087fcdef7ad615429d4011a35dddb18b59b81d /examples/rssblog/templates/default.html
parentef7a0dfa0b7c15ec97ac0179aaca5aa105748868 (diff)
downloadhakyll-ac8e89cc1904d25e118c41b441bbb4008583b78a.tar.gz
Added another tutorial.
Diffstat (limited to 'examples/rssblog/templates/default.html')
-rw-r--r--examples/rssblog/templates/default.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/rssblog/templates/default.html b/examples/rssblog/templates/default.html
new file mode 100644
index 0000000..21429fa
--- /dev/null
+++ b/examples/rssblog/templates/default.html
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <title>SimpleBlog - $title</title>
+ <link rel="stylesheet" type="text/css" href="/css/default.css" />
+ <link rel="alternate"
+ type="application/rss+xml"
+ title="SimpleBlog"
+ href="http://example.com/rss.xml" />
+ </head>
+ <body>
+ <h1>SimpleBlog - $title</h1>
+ <div id="navigation">
+ <a href="/index.html">Home</a>
+ <a href="/posts.html">All posts</a>
+ </div>
+
+ $body
+ </body>
+</html>