diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-15 19:07:53 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-15 19:07:53 +0100 |
commit | e358894df10ce2106acf3df560ce94ac03e03e5f (patch) | |
tree | 1f700d5626e8d1ed9237ae68e32063325a12364a /examples/feedblog/templates/default.html | |
parent | 47586163d2c38aa32ef4c106ebceca9fbf67325a (diff) | |
download | hakyll-e358894df10ce2106acf3df560ce94ac03e03e5f.tar.gz |
Migrated rssblog example to feedblog.
Diffstat (limited to 'examples/feedblog/templates/default.html')
-rw-r--r-- | examples/feedblog/templates/default.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/feedblog/templates/default.html b/examples/feedblog/templates/default.html new file mode 100644 index 0000000..1772458 --- /dev/null +++ b/examples/feedblog/templates/default.html @@ -0,0 +1,23 @@ +<?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> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>SimpleBlog - $title</title> + <link rel="stylesheet" type="text/css" href="$root/css/default.css" /> + <link rel="alternate" + type="application/rss+xml" + title="SimpleBlog" + href="$root/rss.xml" /> + </head> + <body> + <h1>SimpleBlog - $title</h1> + <div id="navigation"> + <a href="$root/index.html">Home</a> + <a href="$root/posts.html">All posts</a> + </div> + + $body + </body> +</html> |