mostly filebased Content Presentation System
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 lines
255B

  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>