| 1 |
<!DOCTYPE html> |
| 2 |
<html lang="en"> |
| 3 |
<head> |
| 4 |
<meta charset="utf-8"> |
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 |
<title>{{ page_title }}</title> |
| 7 |
{% include "custom/_chrome_style.html" %} |
| 8 |
<style>{{ sanitized_css|safe }}</style> |
| 9 |
</head> |
| 10 |
<body> |
| 11 |
{% include "custom/_header.html" %} |
| 12 |
<div class="user-canvas" id="uc-{{ canvas_id }}"> |
| 13 |
{{ sanitized_html|safe }} |
| 14 |
</div> |
| 15 |
{% include "custom/_footer.html" %} |
| 16 |
</body> |
| 17 |
</html> |
| 18 |
|