5f8b358fd4
- Refactored Homepage with customisable Hero Section - New Homepage Section to add content on Homepage as cards or using Custom HTML - Products page at "/all-products" with customisable filters - Item Configure dialog to find an Item Variant filtered by attribute values - Contact Us dialog on Item page - Customisable Item page content using the Website Content field
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %} {{ title }} {% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
{% endblock %}
|
|
|
|
{% block page_content %}
|
|
{% from "erpnext/templates/includes/macros.html" import product_image %}
|
|
<div class="item-content">
|
|
<div class="product-page-content" itemscope itemtype="http://schema.org/Product">
|
|
<div class="row mb-5">
|
|
{% include "templates/generators/item/item_image.html" %}
|
|
{% include "templates/generators/item/item_details.html" %}
|
|
</div>
|
|
|
|
{% include "templates/generators/item/item_specifications.html" %}
|
|
|
|
{{ doc.website_content or '' }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block base_scripts %}
|
|
<!-- js should be loaded in body! -->
|
|
<script type="text/javascript" src="/assets/frappe/js/lib/jquery/jquery.min.js"></script>
|
|
<script type="text/javascript" src="/assets/js/frappe-web.min.js"></script>
|
|
<script type="text/javascript" src="/assets/js/control.min.js"></script>
|
|
<script type="text/javascript" src="/assets/js/dialog.min.js"></script>
|
|
<script type="text/javascript" src="/assets/js/bootstrap-4-web.min.js"></script>
|
|
{% endblock %} |