blob: e6cfc9097f4d09b5867ab3d23a632e0f6b3b3b68 [file] [log] [blame]
Kanchan Chauhane0818f82016-04-22 14:39:02 +05301{% extends "templates/web.html" %}
Anand Doshie3bd78e2016-04-22 18:53:21 +05302{% from "erpnext/templates/includes/macros.html" import product_image_square %}
Kanchan Chauhane0818f82016-04-22 14:39:02 +05303
Anand Doshie3bd78e2016-04-22 18:53:21 +05304{% block title %}{{ brand_html }}{% endblock %}
Kanchan Chauhane0818f82016-04-22 14:39:02 +05305
6{% block page_content %}
Kanchan Chauhane0818f82016-04-22 14:39:02 +05307
8<div class="row">
9 <div class="col-sm-12">
Anand Doshie3bd78e2016-04-22 18:53:21 +053010 <h2 class="text-center">{{ homepage.tag_line or '' }}</h2>
11 <p class="lead text-center">{{ homepage.description or '' }}</p>
12 <p class="text-center">
13 <a href="/login" class="btn btn-primary text-center">Login</a>
14 </p>
Kanchan Chauhane0818f82016-04-22 14:39:02 +053015
Anand Doshie3bd78e2016-04-22 18:53:21 +053016 {% if homepage.products %}
17 <!-- TODO: styling of this section -->
18 <div class='featured-products-section'>
19 <h5 class='text-uppercase'>{{ _("Featured Products") }}</h5>
20 <div class="featured-products">
21 <div id="search-list" class="row" style="margin-top:40px;">
22 {% for item in homepage.products %}
23 <a class="product-link" href="{{ item.route | abs_url }}">
24 <div class="col-sm-4 product-image-wrapper">
25 {{ product_image_square(item.thumbnail or item.image) }}
26 <div class="text-ellipsis inline-block small product-text">
27 {{ item.item_name }}
28 </div>
29 </div>
30 </a>
31 {% endfor %}
32 </div>
33 </div>
34 <!-- TODO: remove hardcoding of /products -->
35 <p class="text-center"><a href="/products" class="btn btn-primary">More Products</a></p>
Kanchan Chauhane0818f82016-04-22 14:39:02 +053036 </div>
Anand Doshie3bd78e2016-04-22 18:53:21 +053037 {% endif %}
Kanchan Chauhane0818f82016-04-22 14:39:02 +053038 </div>
39</div>
40{% endblock %}
Anand Doshie3bd78e2016-04-22 18:53:21 +053041
42{% block style %}
43<style>
44 .featured-products-section {
45 margin-top: 75px;
46 }
47</style>
48{% endblock %}