1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="/shared/base.css" type="text/css" />
<script src="/shared/jquery-2.0.3.js"></script>
{% block head %}{% endblock %}
</head>
<body>
<div id="container">
<div id="header">
{% block header %}
{% include "shared/navbar.html" %}
{% endblock %}
</div>
<div id="border">
<div id="content">
{% block content %}
Main Content
{% endblock %}
</div>
</div>
<div id="footer">
{% block footer %}
{% endblock %}
</div>
</div>
</body>
</html>
|