templates/base.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 13:36:20 +0530
changeset 52 0ef76d42d4f4
parent 17 2bca2008fbe3
child 53 5daf523e20b4
permissions -rw-r--r--
added a file for css

<html>
<head>
    <title>{% block title %}PyTasks{% endblock %}</title>
    {% block js_script %} {% endblock %}
</head>

<body>
{% block content %}
<h2><a href="/">PyTasks</a></h2>
{% endblock %}
</body>
</html>