| 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 |
{# Item pages have no creator HTML: the trustworthy default layout wears the |
| 13 |
parent project's CSS, re-scoped to the item canvas. #} |
| 14 |
<div class="item-canvas" id="ic-{{ canvas_id }}"> |
| 15 |
<div class="mnw-item"> |
| 16 |
<h1>{{ item_title }}</h1> |
| 17 |
{% if let Some(desc) = item_description %}<p>{{ desc }}</p>{% endif %} |
| 18 |
<div class="mnw-price">{{ price_label }}</div> |
| 19 |
<a class="mnw-item-cta" href="{{ buy_url }}">Get on makenot.work</a> |
| 20 |
</div> |
| 21 |
</div> |
| 22 |
{% include "custom/_footer.html" %} |
| 23 |
</body> |
| 24 |
</html> |
| 25 |
|