--- a/mouchak/sampleConf.py
+++ b/mouchak/sampleConf.py
@@ -1,5 +1,10 @@
-DB = 'crin'
+DB = 'mouchak_test'
SITE_TITLE = 'Testing Mouchak'
+SITE_FOOTER = '''
+
+ Place your site footer here
+
+'''
HOST = '0.0.0.0'
PORT = 5000
--- a/mouchak/server.py
+++ b/mouchak/server.py
@@ -44,7 +44,7 @@
@app.route('/', methods=['GET'])
def index():
return flask.render_template('index.html', content=getContent(),
- title=conf.SITE_TITLE)
+ title=conf.SITE_TITLE, footer=conf.SITE_FOOTER)
@app.route('/edit', methods=['GET'])
--- a/mouchak/templates/index.html
+++ b/mouchak/templates/index.html
@@ -28,7 +28,7 @@
-
+