diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/plainbase.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/plainbase.html b/templates/plainbase.html index 64b1d20..20067a7 100644 --- a/templates/plainbase.html +++ b/templates/plainbase.html @@ -3,6 +3,15 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>{% block title %}{% endblock %}</title> +<link rel="stylesheet" type="text/css" href="/css/main2.css" /> +<link rel="stylesheet" type="text/css" href="{{ settings.JSLIB_URL }}jquery-ui/css/smoothness/jquery-ui.css" /> +<script src="{{ settings.JSLIB_URL }}jquery/jquery.min.js" type="text/javascript"></script> +<script src="{{ settings.JSLIB_URL }}jquery-ui/jquery-ui.min.js" type="text/javascript"></script> +<script type="text/javascript"> + $(function() { + $( "#tabs" ).tabs(); + }); +</script> {% block extrahead %}{% endblock %} </head> <body {% block bodyattrs %}{% endblock %}> |