blob: 5ec396d08890a077a96566c423b975ac23083e66 [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">
Kanchan Chauhan239b3512016-05-02 11:43:44 +053010 <div class="homepage-tagline h1 text-center">{{ homepage.tag_line or '' }}</div>
11 <p class="text-center">{{ homepage.description or '' }}</p>
Anand Doshie3bd78e2016-04-22 18:53:21 +053012 {% if homepage.products %}
Kanchan Chauhan239b3512016-05-02 11:43:44 +053013 <div class='featured-products-section' itemscope itemtype="http://schema.org/Product">
14 <h5 class='featured-product-heading'>{{ _("Featured Products") }}</h5>
Anand Doshie3bd78e2016-04-22 18:53:21 +053015 <div class="featured-products">
16 <div id="search-list" class="row" style="margin-top:40px;">
17 {% for item in homepage.products %}
Kanchan Chauhan239b3512016-05-02 11:43:44 +053018 <a class="product-link" href="{{ item.route|abs_url }}">
19 <div class="col-sm-4 col-xs-4 product-image-wrapper">
20 <div class="product-image-img">
21 {{ product_image_square(item.thumbnail or item.image) }}
22 <div class="product-text" itemprop="name">{{ item.item_name }}</div>
Anand Doshie3bd78e2016-04-22 18:53:21 +053023 </div>
Kanchan Chauhan239b3512016-05-02 11:43:44 +053024 </div>
25 </a>
Anand Doshie3bd78e2016-04-22 18:53:21 +053026 {% endfor %}
27 </div>
28 </div>
29 <!-- TODO: remove hardcoding of /products -->
Kanchan Chauhan239b3512016-05-02 11:43:44 +053030 <div class=" text-center text-uppercase"><a href="/products" class="btn btn-primary all-products"> {{ _("View All Products") }}</a></div>
Kanchan Chauhane0818f82016-04-22 14:39:02 +053031 </div>
Anand Doshie3bd78e2016-04-22 18:53:21 +053032 {% endif %}
Kanchan Chauhane0818f82016-04-22 14:39:02 +053033 </div>
34</div>
35{% endblock %}
Anand Doshie3bd78e2016-04-22 18:53:21 +053036
37{% block style %}
38<style>
39 .featured-products-section {
Kanchan Chauhan239b3512016-05-02 11:43:44 +053040 margin-top: 95px;
Anand Doshie3bd78e2016-04-22 18:53:21 +053041 }
Kanchan Chauhan239b3512016-05-02 11:43:44 +053042
43 .home-login {
44 margin-top: 30px;
45 }
46 .btn-login {
47 width: 80px;
48 }
49
50
Anand Doshie3bd78e2016-04-22 18:53:21 +053051</style>
52{% endblock %}