24 lines
769 B
HTML
24 lines
769 B
HTML
<!--
|
|
Template for one shop item/card.
|
|
|
|
Usage:
|
|
1) Copy the whole <article class="product-card"> ... </article>
|
|
2) Paste it inside <div class="shop-grid" id="shop-grid"> in `shop.html`
|
|
3) Replace placeholders (image, texts, price, data-product)
|
|
-->
|
|
<article class="product-card">
|
|
<img
|
|
class="product-image"
|
|
src="images/fotowebsite/k%C3%BCche/FotoPosch%20307.jpg"
|
|
alt="Produktbild (ersetzen)"
|
|
width="400"
|
|
height="400"
|
|
>
|
|
<div class="product-body">
|
|
<h3>Artikelname (ersetzen)</h3>
|
|
<p class="product-desc">Kurzbeschreibung (ersetzen). Maße/Material/Details hinzufügen.</p>
|
|
<p class="product-price">0,00 €</p>
|
|
<a href="#" class="btn" data-product="Artikelname (ersetzen)">Anfragen</a>
|
|
</div>
|
|
</article>
|
|
|