You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
702 B
25 lines
702 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>{% block title %}Portal - OutsideTheBox{% endblock %}</title> |
|
<link rel="stylesheet" href="/static/css/style.css"> |
|
<link rel="stylesheet" href="/static/css/brand.css"> |
|
<link rel="icon" type="image/png" href="/static/favicon.png"> |
|
{% block head_extra %}{% endblock %} |
|
</head> |
|
<body> |
|
{% include "includes/site_nav.html" %} |
|
|
|
<div class="portal-shell"> |
|
<div class="portal-wrap"> |
|
{% block portal_content %}{% endblock %} |
|
</div> |
|
</div> |
|
|
|
{% block scripts %}{% endblock %} |
|
|
|
{% include "includes/otb_footer.html" %} |
|
</body> |
|
</html>
|
|
|