mostly filebased Content Presentation System
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cart.htm 255B

12345678910111213
  1. <div class="cart">
  2. <a href="/cart">cart</a>
  3. <repeat group="{{ @cart }}" key="{{ @key }}" value="{{ @value }}">
  4. <li>{{ @value.amount }} x {{ @value.name }} à {{ @value.price }}</li>
  5. </repeat>
  6. <a href="/checkout">checkout</a>
  7. <script>
  8. </script>
  9. </div>