Your cart
  • IMG
    {{cart_item.name}}
    {{cart_item.variation_attribute_name}}: {{cart_item.variation_attribute_label}}
    {{cart_item.item_unit}}: {{ setCurrency(cart_item.price)}}
    {{ setCurrency(cart_item.price*cart_item.quantity)}}
    Invalid quantity more than stock
Total :
{{setCurrency(cart.sub_total)}}

There is no item in the cart. If you want to buy, Please click here.

Step 2: Add bootstrap framework

Complete Application using Grails 3

Created by :
Grails
tutorial
Programming, Software and application
1090
2020-10-14 16:12:27

By default, bootstrap CSS and JS is exist in the folder grails-app/asset/ stylesheet and grails-app/asset/javascripts respectively. Or you download latest bootstrap from http://getbootstrap.com/getting-started/ and  after unzip, all CSS put grails-app/asset/stylesheet and jquery and bootstrap.js files will put in grails-app/asset/javascripts folder.

At now add CSS file in the layout/main.gsp file like as

<asset:stylesheet src="bootstrap.css"/>
<asset:javascript src="jquery-2.2.0.min.js"/>
<asset:javascript src="bootstrap.js"/>