2012-08-28 21:06:20 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
2012-10-16 06:03:29 +02:00
|
|
|
{# Base template for the whole site. #}
|
|
|
|
|
2012-08-28 21:06:20 +02:00
|
|
|
<head>
|
2012-09-24 17:17:41 +02:00
|
|
|
<title>Humbug, from Humbug Inc.</title>
|
2012-10-17 19:52:57 +02:00
|
|
|
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
|
|
<![endif]-->
|
2012-10-17 20:34:38 +02:00
|
|
|
<link href="{{ static_third }}bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link href="{{ static_third }}bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
|
2012-09-24 17:17:41 +02:00
|
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
2012-08-28 22:52:23 +02:00
|
|
|
{# We need to import jQuery before Bootstrap #}
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
2012-10-17 20:34:38 +02:00
|
|
|
<script src="{{ static_third }}bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
<script src="{{ static_public }}js/common.js"></script>
|
2012-09-24 17:17:41 +02:00
|
|
|
{% block customhead %}
|
|
|
|
{% endblock %}
|
2012-08-28 21:06:20 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2012-10-05 17:46:07 +02:00
|
|
|
<div class="container">
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
2012-08-28 21:06:20 +02:00
|
|
|
|
2012-08-28 21:56:46 +02:00
|
|
|
</div>
|
|
|
|
|
2012-08-28 21:06:20 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|