diff options
author | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-05 20:01:43 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-05 20:01:43 +0700 |
commit | 0affbce85a1e3e33152a6eab4cfbceb754495b42 (patch) | |
tree | d720cf15433350db914d6bb63eac84f0152c36fb | |
parent | 5ab975d0ddef58ffdd3024e4d1427fecd33b770d (diff) |
add item calculation in basket
-rw-r--r-- | pages/ord/basket.html | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/pages/ord/basket.html b/pages/ord/basket.html index bafc693..6c6d085 100644 --- a/pages/ord/basket.html +++ b/pages/ord/basket.html @@ -6,10 +6,27 @@ <!-- Hero Section--> <div class="py-2"> <div class="text-start"> - <h1>[L]Shopping Cart[/L]</h1> + <h1>[L]Shopping cart[/L]</h1> </div> + <!-- Cart subheading --> + <div class="row"> + <div class="col-xl-8 offset-xl-2"> + <p class="lead text-muted"> + You have + [calc] + if ([nitems] ne '0') { + return q( + [nitems] + ); + } + [/calc] items in your shopping cart. + </p> + </div> + </div> + <!-- End of cart subheading --> </div> <!-- End of Hero section --> + </div> <!-- END CONTENT --> @_BOTTOM_@
\ No newline at end of file |