Int_Prog/лаб3/lab3/public/scripts/helpers/getItemHTML.js
2024-01-19 01:24:45 +04:00

17 lines
739 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export function getItemHTML(object) {
return `
<div class="row w-100">
<div class="col-12 col-lg-6">
<div><img src="${object.photo}" class="w-100 h-auto" /></div>
</div>
<div class="col-12 col-lg-6 text-light">
<p class="fs-1">${object.name}</p>
<a href="index.html" class="mb-4 gold-color fs-4 text-decoration-underline">Вернуться в каталог</a>
<p class="m-0 mt-4 fs-3">${object.price}&#8381;</p>
<p class="fs-3 gold-color fw-bold m-0 mt-2">Информация о товаре</p>
<p class="fs-3 m-0">${object.info}</p>
<button class="btn btn-lg btn-warning mt-3">Купить</button>
</div>
</div>
`;
}