##// END OF EJS Templates
removed mercurial statics and tempaltes
removed mercurial statics and tempaltes

File last commit:

r93:aec4c007 default
r100:d8fc93ae default
Show More
tags.py
16 lines | 423 B | text/x-python | PythonLexer
import logging
from pylons import request, response, session, tmpl_context as c, url
from pylons.controllers.util import abort, redirect
from pylons_app.lib.base import BaseController, render
log = logging.getLogger(__name__)
class TagsController(BaseController):
def index(self):
# Return a rendered template
#return render('/tags.mako')
# or, return a string
return 'Hello World'