blob: e3c320f55c103b08626023521dc8be1f33ad550d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include nav.html alwayson=true %}
<div class="navPusher">
{% include home_header.html %}
<div class="mainContainer">
<div id="main_wrap" class="wrapper mainWrapper">
{{ content }}
</div>
{% include powered_by.html %}
</div>
{% include footer.html %}
</div>
</body>
</html>
|