Files
bodyrep-sandpit/django/templates/base.html
Alex Lewis b0eb5ba9e1 Django import
Django import
2012-09-28 21:05:33 +10:00

61 lines
1.8 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>test</title>
<link rel="stylesheet" href="https://br.netbit.com.au/css/bootstrap.css" media="all" />
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link rel="stylesheet" href="https://br.netbit.com.au/css/bootstrap-responsive.css" />
<link rel="stylesheet" href="https://br.netbit.com.au/css/site.css" />
<link rel="stylesheet" href="https://br.netbit.com.au/css/chosen.css" />
<script type="text/javascript" src="https://br.netbit.com.au/js/LAB.js"></script>
<script type="text/javascript">
var loadb;
$LAB.script('https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js')
.script('//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js')
.script("https://br.netbit.com.au/js/application.js")
.script("https://br.netbit.com.au/js/jquery.chosen.min.js")
.script("https://br.netbit.com.au/js/bootstrap.js").wait(function() {
clearTimeout(loadb);
$('#loadmast').hide();
$('#mast').removeClass('hidden');
});
</script>
</head>
<body>
<div id='mast' class='hidden'>
<div class="container-fluid symfony-content">
{% block content %}{% endblock %}
<hr>
<footer>
<p>&copy; BodyRep 2012</p>
</footer>
</div>
</div>
<div id='loadmast'><img align="absmiddle" style="margin-left: 10px; margin-bottom: 3px;" src="https://br.netbit.com.au/img/progress.gif"> Loading</div>
</body>
</html>