troggle-unchained/templates/plainbase.html

20 lines
812 B
HTML
Raw Normal View History

2012-08-10 18:34:44 +01:00
{% autoescape off %}
<!-- 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>
2012-08-10 18:34:44 +01:00
{% block extrahead %}{% endblock %}
</head>
<body {% block bodyattrs %}{% endblock %}>
{% block body %}{% endblock %}
</body>
</html>
{% endautoescape %}