16 lines
464 B
HTML
16 lines
464 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
|
|
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
|
|
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
|
|
<!--[if (gte IE 9)|!(IE)]><!-->
|
|
<html lang="en">
|
|
<!--<![endif]-->
|
|
{% include 'include/_header.html' %}
|
|
<body class="page-top">
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
{% include 'include/_js.html' %}
|
|
</body>
|
|
</html> |