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-09-06 17:22: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-09-06 17:22:38 +02:00
|
|
|
<script src="/static/third/bootstrap/js/bootstrap.min.js"></script>
|
2012-08-29 17:45:15 +02:00
|
|
|
<script src="/static/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>
|