diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2012-03-15 23:53:45 -0700 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2012-03-15 23:53:45 -0700 |
| commit | 8f8c1304e6746a1fcac856846d6835ecc5e21e84 (patch) | |
| tree | 6a9efad34f77f03da9360df35819c51c32879803 /app.py | |
| parent | 668ddf8f983f4e711cc13019bbc0d7be6d9c9791 (diff) | |
bootstrapified
Diffstat (limited to 'app.py')
| -rw-r--r-- | app.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -18,6 +18,11 @@ def index(filename=None): root = os.path.join(os.path.dirname(__file__), 'js') return static_file(filename, root=root, mimetype='text/javascript') +@route('/css/:filename') +def index(filename=None): + root = os.path.join(os.path.dirname(__file__), 'css') + return static_file(filename, root=root, mimetype='text/css') + @route('/s/:id') def sig(id='home'): url = CLOUDANT_BASE + id |
