~joaopinto/apt-portal/pre-modules

1
2
3
4
5
6
7
8
9
# -*- coding: utf-8 -*-
from cherrypy_mako import *

class Search(object):
    @cherrypy.expose
    def index(self, keywords):
        return serve_template("search.html")

cherrypy.root.search = Search()