diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-06-13 08:43:28 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-06-13 08:43:28 +0200 |
commit | edeef66180f24e4254b512041bee617368fa1eba (patch) | |
tree | df2b6c470dba9fda52a0d3b96fd569d2c74b2c48 /examples/tagblog/templates | |
parent | 893b366435739d073d2b6b9cafae868b5d361354 (diff) | |
download | hakyll-edeef66180f24e4254b512041bee617368fa1eba.tar.gz |
Remove examples from this repo
Diffstat (limited to 'examples/tagblog/templates')
-rw-r--r-- | examples/tagblog/templates/default.html | 23 | ||||
-rw-r--r-- | examples/tagblog/templates/index.html | 19 | ||||
-rw-r--r-- | examples/tagblog/templates/post.html | 7 | ||||
-rw-r--r-- | examples/tagblog/templates/postitem.html | 4 | ||||
-rw-r--r-- | examples/tagblog/templates/posts.html | 4 |
5 files changed, 0 insertions, 57 deletions
diff --git a/examples/tagblog/templates/default.html b/examples/tagblog/templates/default.html deleted file mode 100644 index 0537065..0000000 --- a/examples/tagblog/templates/default.html +++ /dev/null @@ -1,23 +0,0 @@ -<?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="/css/default.css" /> - <link rel="alternate" - type="application/rss+xml" - title="SimpleBlog" - href="/rss.xml" /> - </head> - <body> - <h1>SimpleBlog - $title$</h1> - <div id="navigation"> - <a href="/">Home</a> - <a href="/posts.html">All posts</a> - </div> - - $body$ - </body> -</html> diff --git a/examples/tagblog/templates/index.html b/examples/tagblog/templates/index.html deleted file mode 100644 index 7152d02..0000000 --- a/examples/tagblog/templates/index.html +++ /dev/null @@ -1,19 +0,0 @@ -<div id="posts"> - <h1>Recent posts</h1> - <ul> - $posts$ - </ul> - <p><a href="/posts.html">All posts…</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> diff --git a/examples/tagblog/templates/post.html b/examples/tagblog/templates/post.html deleted file mode 100644 index 0233fc1..0000000 --- a/examples/tagblog/templates/post.html +++ /dev/null @@ -1,7 +0,0 @@ -<h1>$title$</h1> - -<p>by <em>$author$</em> on <strong>$date$</strong></p> - -<p>Tagged as: $prettytags$.</p> - -$body$ diff --git a/examples/tagblog/templates/postitem.html b/examples/tagblog/templates/postitem.html deleted file mode 100644 index ccbb58e..0000000 --- a/examples/tagblog/templates/postitem.html +++ /dev/null @@ -1,4 +0,0 @@ -<li> - <a href="$url$">$title$</a> - - <em>$date$</em> - by <em>$author$</em> -</li> diff --git a/examples/tagblog/templates/posts.html b/examples/tagblog/templates/posts.html deleted file mode 100644 index 758c670..0000000 --- a/examples/tagblog/templates/posts.html +++ /dev/null @@ -1,4 +0,0 @@ -<h1>$title$</h1> -<ul> - $posts$ -</ul> |