mostly filebased Content Presentation System
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
263B

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