templates/base.html
author nishanth
Thu, 22 Apr 2010 12:17:21 +0530
changeset 50 0842b3439c3e
parent 19 4911302379ac
child 52 adab2d07981a
permissions -rw-r--r--
implemented extra filter on string patterns. now string patterns will not be split like other pattersns

<html>
<head>
<title>
{% block title %}
{% endblock %}
</title>
{% block script %}
{% endblock %}
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>