summaryrefslogtreecommitdiff
path: root/examples/feedblog/templates
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-06-13 08:43:28 +0200
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-06-13 08:43:28 +0200
commitedeef66180f24e4254b512041bee617368fa1eba (patch)
treedf2b6c470dba9fda52a0d3b96fd569d2c74b2c48 /examples/feedblog/templates
parent893b366435739d073d2b6b9cafae868b5d361354 (diff)
downloadhakyll-edeef66180f24e4254b512041bee617368fa1eba.tar.gz
Remove examples from this repo
Diffstat (limited to 'examples/feedblog/templates')
-rw-r--r--examples/feedblog/templates/default.html23
-rw-r--r--examples/feedblog/templates/index.html14
-rw-r--r--examples/feedblog/templates/post.html5
-rw-r--r--examples/feedblog/templates/postitem.html4
-rw-r--r--examples/feedblog/templates/posts.html4
5 files changed, 0 insertions, 50 deletions
diff --git a/examples/feedblog/templates/default.html b/examples/feedblog/templates/default.html
deleted file mode 100644
index 7aac5d5..0000000
--- a/examples/feedblog/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/feedblog/templates/index.html b/examples/feedblog/templates/index.html
deleted file mode 100644
index f20adb1..0000000
--- a/examples/feedblog/templates/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<div id="posts">
- <h1>Recent posts</h1>
- <ul>
- $posts$
- </ul>
- <p><a href="/posts.html">All posts&hellip;</a></p>
-</div>
-
-<div class="about">
- <h1>About</h1>
- <p>
- This is a sample blog for educational purposes.
- </p>
-</div>
diff --git a/examples/feedblog/templates/post.html b/examples/feedblog/templates/post.html
deleted file mode 100644
index dd0db95..0000000
--- a/examples/feedblog/templates/post.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<h1>$title$</h1>
-
-<p>by <em>$author$</em> on <strong>$date$</strong></p>
-
-$body$
diff --git a/examples/feedblog/templates/postitem.html b/examples/feedblog/templates/postitem.html
deleted file mode 100644
index ccbb58e..0000000
--- a/examples/feedblog/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/feedblog/templates/posts.html b/examples/feedblog/templates/posts.html
deleted file mode 100644
index 2bec161..0000000
--- a/examples/feedblog/templates/posts.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<h1>All posts</h1>
-<ul>
- $posts$
-</ul>