HEX
Server: Apache
System: Linux srv4.garantili.com.tr 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ekspardev (1006)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/ekspardev/public_html/tubisad/rapor/src/pages/_includes/cards/store-list.html
<div class="card">
	<table class="table card-table table-vcenter">
		{% for product in site.data.products %}
		<tr>
			<td><img src="{{ site.base }}/img/products/{{ product.image }}" alt="" class="h-16"></td>
			<td>
				{{ product.name }}

				{% assign mod = forloop.index | modulo: 2 %}
				{% if mod == 0 %}
				<span class="badge badge-secondary-lt">New</span>
				{% endif %}
			</td>
			<td class="text-end text-muted d-none d-md-table-cell text-nowrap">{{ forloop.index | random_number: 4, 100 }} reviews</td>
			<td class="text-end text-muted d-none d-md-table-cell text-nowrap">{{ forloop.index | random_number: 4, 50 }} offers</td>
			<td class="text-end">
				<strong>{{ product.price }}</strong>
			</td>
		</tr>
		{% endfor %}
	</table>
</div>