| 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 class="mnw-buy"> |
| 15 |
<div class="mnw-price">{{ price_label }}</div> |
| 16 |
<a class="mnw-buy-cta" href="{{ buy_url }}">Get on makenot.work</a> |
| 17 |
</div> |
| 18 |
{% if !items.is_empty() %} |
| 19 |
<ul class="mnw-files"> |
| 20 |
{% for it in items %} |
| 21 |
<li><a href="{{ it.url }}">{{ it.title }}</a></li> |
| 22 |
{% endfor %} |
| 23 |
</ul> |
| 24 |
{% endif %} |
| 25 |
</div> |
| 26 |
{% include "custom/_footer.html" %} |
| 27 |
</body> |
| 28 |
</html> |
| 29 |
|