From 02d0626ee9a64e4393db1e311f355ac5e0b041f5 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Thu, 26 Mar 2009 22:14:43 +0530 Subject: changes fir plugin architecture --- silpa/www/templates/template.py | 124 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 silpa/www/templates/template.py (limited to 'silpa/www/templates/template.py') diff --git a/silpa/www/templates/template.py b/silpa/www/templates/template.py new file mode 100644 index 0000000..00d6586 --- /dev/null +++ b/silpa/www/templates/template.py @@ -0,0 +1,124 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- + +def getBaseHTML(): + content = """\ + + + + + +Silpa- The Indian Language Computing project + + + + + + +
+ + + +
+ + + +
+ + +
+
+

Welcome to Silpa!

+

Silpa stands for Swathanthra Indian Language Processing Applications. Silpa is a single place in the web + where you can use the exising free(dom) software langauge processing applications easily. Silpa is in development and if you + are intersted in contributing just drop a mail to Santhosh

+
+ $$SILPA_CONTENT$$ + + + + + + + + +
+ +
+ + + +""" + + return content + +if __name__ == '__main__': + print getBaseHTML() -- cgit