This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
<html> |
| 2 |
<head> |
| 3 |
<title>{% block title %}{% endblock %}</title> |
| 4 |
<link rel="stylesheet" href="/shared/base.css" type="text/css" /> |
| 5 |
<script src="/shared/jquery-1.5.min.js"></script> |
| 6 |
{% block head %}{% endblock %} |
| 7 |
</head> |
| 8 |
<body> |
| 9 |
<div id="container"> |
| 10 |
<div id="header"> |
| 11 |
{% block header %} |
| 12 |
{% include "shared/navbar.html" %} |
| 13 |
{% endblock %} |
| 14 |
</div> |
| 15 |
<div id="border"> |
| 16 |
<div id="content"> |
| 17 |
{% block content %} |
| 18 |
Main Content |
| 19 |
{% endblock %} |
| 20 |
</div> |
| 21 |
</div> |
| 22 |
<div id="footer"> |
| 23 |
{% block footer %} |
| 24 |
{% endblock %} |
| 25 |
</div> |
| 26 |
</div> |
| 27 |
</body> |
| 28 |
</html> |