UNPKG

tabler-ui

Version:

Premium and Open Source dashboard template with responsive and high quality UI. For Free!

22 lines (21 loc) 735 B
<div class="card"> <table class="table card-table table-vcenter"> {% for product in site.data.products %} <tr> <td><img src="{{ product.image }}" alt="" class="h-8"></td> <td> {{ product.name }} {% assign mod = forloop.index | modulo: 2 %} {% if mod == 0 %} <div class="badge badge-default badge-md">New</div> {% endif %} </td> <td class="text-right text-muted d-none d-md-table-cell text-nowrap">{{ forloop.index | random_number: 4, 100 }} reviews</td> <td class="text-right text-muted d-none d-md-table-cell text-nowrap">{{ forloop.index | random_number: 4, 50 }} offers</td> <td class="text-right"> <strong>{{ product.price }}</strong> </td> </tr> {% endfor %} </table> </div>