summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2008-10-12 18:46:57 -0400
committerDusty Phillips <buchuki@gmail.com>2008-10-12 18:46:57 -0400
commita181df791a7401e9f739d6bb5806cea8b1c19da6 (patch)
treea0a82f37633611ac2fc94e1caade80f4c3bca07f /templates
parent3a295fbaf1691ce11f0ec51564a630d5e6d6b616 (diff)
downloadarchweb-a181df791a7401e9f739d6bb5806cea8b1c19da6.tar.gz
archweb-a181df791a7401e9f739d6bb5806cea8b1c19da6.zip
drop seeveral unnecessary templates
Diffstat (limited to 'templates')
-rw-r--r--templates/devel/blank.html10
-rw-r--r--templates/devel/denied.html11
-rw-r--r--templates/error_page.html8
-rw-r--r--templates/errors.html5
-rw-r--r--templates/wiki/base.html30
-rw-r--r--templates/wiki/edit.html22
-rw-r--r--templates/wiki/home.html9
-rw-r--r--templates/wiki/page.html17
8 files changed, 0 insertions, 112 deletions
diff --git a/templates/devel/blank.html b/templates/devel/blank.html
deleted file mode 100644
index d1e7b71b..00000000
--- a/templates/devel/blank.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-<div class="box">
- <h2 class="title">Download Arch Linux</h2>
- <br /><br />
-</div>
-<br /><br />
-{% endblock %}
-
diff --git a/templates/devel/denied.html b/templates/devel/denied.html
deleted file mode 100644
index c59c0f73..00000000
--- a/templates/devel/denied.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-<div class="box">
- <br /><br />
- Sorry, you don't have sufficient privileges to perform this function.
- <br /><br />
-</div>
-<br /><br />
-{% endblock %}
-
diff --git a/templates/error_page.html b/templates/error_page.html
deleted file mode 100644
index 575ac416..00000000
--- a/templates/error_page.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
- <div class="box">
- <h4>{{ errmsg }}</h4>
- </div>
-{% endblock %}
-
diff --git a/templates/errors.html b/templates/errors.html
deleted file mode 100644
index 84f98d79..00000000
--- a/templates/errors.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<ul class="error">
-{% for err in errors %}
- <li>{{ err.0 }}: {{ err.1 }}</li>
-{% endfor %}
-</ul>
diff --git a/templates/wiki/base.html b/templates/wiki/base.html
deleted file mode 100644
index 90d93156..00000000
--- a/templates/wiki/base.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-<head>
- <style type='text/css'>
-body {
- background: #333;
- color: #ddd;
-}
-
-a {
- color: #fff;
-}
-
-div.body {
- padding: 25px;
- margin: 15px;
- background: #444;
-}
-
-div.controls {
- padding: 20px;
-}
- </style>
-<title>{% block title %}{% endblock %}</title>
-</head>
-<body>
-{% block content %}
-<h1>This is the base template. Extend it with the "extends" template tag.</h1>
-{% endblock %}
-</body>
-</html> \ No newline at end of file
diff --git a/templates/wiki/edit.html b/templates/wiki/edit.html
deleted file mode 100644
index 421a313f..00000000
--- a/templates/wiki/edit.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% extends "base.html" %}
-{% block content %}
-<div class="greybox">
- <div style="float:right;font-size:x-small">
- <a href="http://daringfireball.net/projects/markdown/syntax/">Wiki Syntax</a>
- </div>
- <h2 class="title">Editing: {{ page.title }}</h2>
- <form action="." method="post">
- <input name="title" value="{{ page.title }}" />
- <br /><br />
- <textarea name="content" cols="100" rows="32">{{ page.content }}</textarea>
- <br /><br />
- <input type="submit" value="Save" />
- </form>
- <!--
- <form action="/wiki/delete/" method="post">
- <input type="hidden" name="title" value="{{ page.title }}" />
- <input type="submit" value="Delete" />
- </form>
- -->
-</div>
-{% endblock %}
diff --git a/templates/wiki/home.html b/templates/wiki/home.html
deleted file mode 100644
index 6c0fb6ef..00000000
--- a/templates/wiki/home.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "base.html" %}
-{% block content %}
-<div class="box">
- <h2 class="title">Wiki Index</h2>
-{% for page in pages %}
- <h3><a href='{{ page.title }}/'>{{ page.title }}</a></h3>
-{% endfor %}
-</div>
-{% endblock %}
diff --git a/templates/wiki/page.html b/templates/wiki/page.html
deleted file mode 100644
index e0e6ddd9..00000000
--- a/templates/wiki/page.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "base.html" %}
-{% load wikitags %}
-{% block content %}
-<div class="box">
- <h1 class="wiki">{{ page.title }}</h1>
- <div class="wikibody">
-{{ page.content|wikify }}
- </div>
-
- <div class="wikifoot_r">
- <a href='{{ page.editurl }}'>Edit this page</a> | <a href='/wiki/'>Wiki Index</a>
- </div>
- <div class="wikifoot_l">
- Last Author: {{ page.last_author.username }}
- </div>
-</div>
-{% endblock %}