mirror of
https://github.com/tabler/tabler.git
synced 2025-12-26 11:16:12 +04:00
22 lines
739 B
HTML
22 lines
739 B
HTML
<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, 50 }} reviews</td>
|
|
<td class="text-right text-muted d-none d-md-table-cell text-nowrap">{{ forloop.index | random_number: 4, 50, 100 }} offers</td>
|
|
<td class="text-right">
|
|
<strong>{{ product.price }}</strong>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div> |