From 925ba08ecb3ff12496d343a1a0a99daf9a32ad3d Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Tue, 24 Mar 2009 21:53:02 +0530 Subject: Adding Silpa framework --- silpa/templates/base.py | 124 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 silpa/templates/base.py (limited to 'silpa/templates/base.py') diff --git a/silpa/templates/base.py b/silpa/templates/base.py new file mode 100644 index 0000000..00d6586 --- /dev/null +++ b/silpa/templates/base.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