import os
from google.appengine.ext.webapp import template
import webapp2


class MainPage(webapp2.RequestHandler):
    def get(self):
        path = os.path.join(os.path.dirname(__file__), 'index.html')
        self.response.out.write(template.render(path, {}))

app = webapp2.WSGIApplication([
    ('/.*', MainPage),
], debug=True)
