2012-08-10 18:34:44 +01:00
|
|
|
{% autoescape off %}
|
2021-04-30 21:32:53 +01:00
|
|
|
<!-- svxfile.html - this text visible because this template has been included -->
|
|
|
|
<!-- This is ONLY used by templates/prospecting.html -->
|
2012-08-10 18:34:44 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2020-07-27 23:39:55 +01:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2012-08-10 18:34:44 +01:00
|
|
|
<title>{% block title %}{% endblock %}</title>
|
2015-06-28 13:52:33 +01:00
|
|
|
<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>
|
2021-04-30 21:32:53 +01:00
|
|
|
|
2012-08-10 18:34:44 +01:00
|
|
|
{% block extrahead %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body {% block bodyattrs %}{% endblock %}>
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{% endautoescape %}
|