remove old templates
authorTero Marttila <terom@fixme.fi>
Sat, 07 Feb 2009 03:01:46 +0200
changeset 19 9c9643047a10
parent 18 0e701fbd6760
child 20 d40c339d3778
remove old templates
templates/__init__.py
templates/error_404.tmpl
templates/main.tmpl
templates/projects.tmpl
--- a/templates/__init__.py	Sat Feb 07 03:00:11 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-
-# system imports
-from Cheetah.Template import Template as _CheetahTemplate
-
-# base template
-class _BaseTemplate (_CheetahTemplate) :
-    def __init__ (self, req) :
-        """
-            Blah
-        """
-
-        # XXX: not done
-        pass
-
-
-# import templates
-from layout import layout
-from main import main
-from error_404 import error_404
-
--- a/templates/error_404.tmpl	Sat Feb 07 03:00:11 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-#extends layout
-#def page_content
-<h1>Oops! Not Found</h1>
-
-<p>The page you requested does not seem to exist. Perhaps you can find what you're looking for in the menu at the left?</p>
-
-<pre>
-    Requested Path: $page_path
-</pre>
-#end def
--- a/templates/main.tmpl	Sat Feb 07 03:00:11 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-#extends layout
-#def page_content
-<h1>Main Page</h1>
-
-<p>This is the main page...</p>
-#end def
--- a/templates/projects.tmpl	Sat Feb 07 03:00:11 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-#extends layout
-#def page_content
-<h1>Projects</h1>
-
-<p>A variety of projects...</p>
-#end def