2012-06-26 13:24:10 +00:00
|
|
|
{% extends "product/product.js" %}
|
|
|
|
|
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>
|
|
|
|
{% endblock %}
|
2012-07-09 10:26:12 +00:00
|
|
|
|
|
|
|
{% block css %}
|
|
|
|
<style>
|
|
|
|
.web-long-description {
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 200%;
|
|
|
|
}
|
|
|
|
.product-page-content {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
/* product page image css */
|
|
|
|
.product-page-content img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* similar products listing */
|
|
|
|
.similar-products .img-area img {
|
|
|
|
max-width: 55px;
|
|
|
|
max-height: 55px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.similar-products .img-area {
|
|
|
|
float: left;
|
|
|
|
width: 30%;
|
|
|
|
margin-top: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.similar-product-description {
|
|
|
|
float: left;
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.similar-product-description span {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|