2024-01-06 01:14:20 +00:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/products.css') }}">
|
|
|
|
|
2023-12-31 19:03:29 +00:00
|
|
|
<div class="product-container">
|
2024-01-22 10:49:08 +00:00
|
|
|
{% if products != None %}
|
2024-01-05 18:20:56 +00:00
|
|
|
{% for product in products %}
|
2024-01-18 19:40:02 +00:00
|
|
|
<a href="/products/{{product.id}}" class="product product-link">
|
2024-01-05 18:20:56 +00:00
|
|
|
<div class="product-title">{{product.name}}</div>
|
|
|
|
<div class="product-information">
|
|
|
|
<div class="product-image">
|
2024-01-21 21:33:55 +00:00
|
|
|
<img src="{{url_for('static', filename='assets/img/products/' + product.image)}}" alt="Brake Disks" height="auto" width="150px" />
|
2024-01-05 18:20:56 +00:00
|
|
|
</div>
|
|
|
|
<div class="product-details">
|
|
|
|
<div class="product-price">£{{product.cost}}</div>
|
2024-01-06 01:14:20 +00:00
|
|
|
<div class="product-description">{{product.description}}</div>
|
2024-01-05 18:20:56 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="product-add-to-cart"></div>
|
2024-01-18 19:40:02 +00:00
|
|
|
</a>
|
2024-01-05 18:20:56 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2023-12-31 19:03:29 +00:00
|
|
|
</div>
|