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 5: Create other page named about

Complete Application using Grails 3

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

First of all, we need to create a method in the SiteController as like

def about() {
       def page_title= 'About page'
       def page_description = 'This is complete tutorial to build an application using grails 3.x. There is several parts of tutorial where every part has a specific objective and several steps. So it is a step by step tutorial to build a complete application using grails 3.x';
       render(view: "about", model: [page_title: page_title, page_description: page_description])
   }


After that we have to create a view under grails-app/views/site/ which name is about.gsp

Browse this about page : http://localhost:8090/site/about