summaryrefslogtreecommitdiff
path: root/recipes/index.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/index.tmpl')
-rw-r--r--recipes/index.tmpl7
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes/index.tmpl b/recipes/index.tmpl
index da79f99..c1808b6 100644
--- a/recipes/index.tmpl
+++ b/recipes/index.tmpl
@@ -4,6 +4,7 @@ useLegacyImportMode=False
#end compiler-settings
#import os
+#import time
#From Cheetah.Template import Template
#from Cheetah.Filters import Markdown
@@ -57,9 +58,13 @@ from the old Wiki
#def content
#transform Markdown
%s
+
+
+
+<span style="float: right; clear: both;">*Last edited: $Edited *</span>
#end def
''' % (''.join(content)),
- searchList=[{'PageName' : filepath.replace('.markdown', '')}])
+ searchList=[{'Edited' : time.ctime(), 'PageName' : filepath.replace('.markdown', '')}])
## Write the results of the template's execution to a .html file
#set fd = open('%s%s' % ($ExecuteContentPath, filepath.replace('.markdown', '.html')), 'w')