diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html index 22e9ba2..c2bbabb 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,15 +8,18 @@ {% endblock %} </title> {% block meta %} -{% endblock%} +{% endblock %} +<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/base.css" type="text/css" /> +{% block css %} +{% endblock %} {% block script %} {% endblock %} </head> <body {% block onload %}{% endblock %}> - + <div class=box> {% block content %} {% endblock %} - + </div> </body> -</html>
\ No newline at end of file +</html> |