# coding: utf-8 # Author: Grizzly # # Views for litl. from django.shortcuts import render from .settings import TEMPLATES def index(request): """Display the home page of the site. TODO: Search and display the urls shortened by the user in the past. """ context = {} return render(request,'base.html',context)