diff options
author | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-05 20:12:30 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-05 20:12:30 +0700 |
commit | 1ee266eeea923a7fc204913f6a8d5738c91a2c32 (patch) | |
tree | 5922c58c65a2b9c5044da3ad7fa291106991e520 /pages/ord | |
parent | 0affbce85a1e3e33152a6eab4cfbceb754495b42 (diff) |
remove calculation, uses [nitems] instead @_@
Diffstat (limited to 'pages/ord')
-rw-r--r-- | pages/ord/basket.html | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/pages/ord/basket.html b/pages/ord/basket.html index 6c6d085..189711f 100644 --- a/pages/ord/basket.html +++ b/pages/ord/basket.html @@ -8,22 +8,13 @@ <div class="text-start"> <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 --> + <!-- Cart subheading --> + <div> + <p class="lead text-muted"> + You have [nitems] items in your shopping cart. + </p> + </div> + <!-- End of cart subheading --> </div> <!-- End of Hero section --> |