2012-07-12 13:11:12 +00:00
|
|
|
{% extends "html/page.html" %}
|
|
|
|
|
|
|
|
{% block javascript %}
|
|
|
|
{% include "js/product_page.js" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block css %}
|
|
|
|
{% include "css/product_page.css" %}
|
|
|
|
{% endblock %}
|
2012-06-26 13:24:10 +00:00
|
|
|
|
2012-07-09 10:26:12 +00:00
|
|
|
{% block title %}
|
|
|
|
{% if item_name != name %}
|
|
|
|
{{ item_name }} [{{ name }}]
|
|
|
|
{% else %}
|
|
|
|
{{ item_name }}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2012-06-26 13:24:10 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="layout-wrapper layout-wrapper-background">
|
|
|
|
<div class="web-content" id="content-product-{{ name }}">
|
|
|
|
<div class="layout-main-section">
|
|
|
|
<h1>{{ item_name }}</h1>
|
2012-07-09 10:26:12 +00:00
|
|
|
<div class="product-page-content">
|
2012-06-26 13:24:10 +00:00
|
|
|
<br><br>
|
2012-06-27 06:36:45 +00:00
|
|
|
{% if website_image %}
|
2012-07-09 10:26:12 +00:00
|
|
|
<image src="files/{{ website_image }}" />
|
|
|
|
{% else %}
|
|
|
|
<div class="img-area"></div>
|
|
|
|
<span style="font-size: 11px">This is an auto-generated Image</span>
|
2012-06-27 06:36:45 +00:00
|
|
|
{% endif %}
|
2012-07-09 10:26:12 +00:00
|
|
|
<br><br>
|
|
|
|
<div class="web-long-description">
|
2012-06-26 13:24:10 +00:00
|
|
|
{{ web_description_html }}
|
2012-07-09 10:26:12 +00:00
|
|
|
</div>
|
2012-06-26 13:24:10 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layout-side-section">
|
|
|
|
<h4>More Categories</h4>
|
|
|
|
<div class="more-categories"></div>
|
|
|
|
<br>
|
|
|
|
<h4>Similar Products</h4>
|
|
|
|
<div class="similar-products"></div>
|
|
|
|
</div>
|
|
|
|
<div style="clear: both"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-07-12 13:11:12 +00:00
|
|
|
{% endblock %}
|