drewcassidy.me/_layouts/default.html

21 lines
337 B
HTML
Raw Normal View History

2017-11-15 06:49:46 +00:00
<!DOCTYPE html>
<html>
2017-11-24 22:33:51 +00:00
{% include head.html %}
<body>
<div id="box">
{% include header.html %}
2017-11-15 06:49:46 +00:00
<div id="main">
2017-11-24 22:33:51 +00:00
{% include sidebar.html %}
2017-11-15 06:49:46 +00:00
<div id="content">
2017-11-24 22:33:51 +00:00
{{ content }}
2017-11-15 06:49:46 +00:00
</div>
</div>
2017-11-24 22:33:51 +00:00
<!--{% include footer.html %}-->
</div>
</body>
2017-11-15 06:49:46 +00:00
</html>