aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/index.py
blob: 040332cc90a364179cd4b3949f0d0fbfa75597c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# coding=utf-8
from pysite.base_route import RouteView

__author__ = "Gareth Coles"


class IndexView(RouteView):
    path = "/"
    name = "index"

    def get(self):
        return self.render("index.html")