Kanchan Chauhan | e0818f8 | 2016-04-22 14:39:02 +0530 | [diff] [blame^] | 1 | {% extends "templates/web.html" %} |
| 2 | |
| 3 | {% block title %}{{brand_html}}{% endblock %} |
| 4 | |
| 5 | {% block page_content %} |
| 6 | <script>{% include "templates/includes/product_list.js" %}</script> |
| 7 | |
| 8 | <script> |
| 9 | frappe.ready(function() { |
| 10 | window.start = 0; |
| 11 | window.get_product_list(); |
| 12 | }); |
| 13 | </script> |
| 14 | |
| 15 | <div class="row"> |
| 16 | <div class="col-sm-12"> |
| 17 | <h2 class="text-center">{{ tag_line }}</h2> |
| 18 | <p class="lead text-center">{{ description }}</p> |
| 19 | <p class="text-center"><a href="/login" class="btn btn-primary text-center">Login</a></p> |
| 20 | <div style="margin-top:75px;"> |
| 21 | <h5>{{_("FEATURED PRODUCTS")}}</h5> |
| 22 | <div class="featured-products"> |
| 23 | <div id="search-list" class="row" style="margin-top:40px;"> |
| 24 | |
| 25 | </div> |
| 26 | </div> |
| 27 | <p class="text-center"><a href="/products" class="btn btn-primary">More Products</a></p> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div> |
| 31 | {% endblock %} |