thomas-shop/templates/index.html
2022-05-02 16:26:06 +02:00

33 lines
1.5 KiB
HTML

{{define "body"}}
<main>
<div class="c-section">
<div class="c-section__content">
<h1 class="t-h1">
Shop
</h1>
<p class="t-p1">
Welcome to the T.Pol shop! My solo album 'Blue Soil' is fresh out on vinyl and it sounds great. My debut album 'In America' is on sale and discounted when you order the Vinyl! Enjoy my music and thank you very much.
</p>
<form method="POST" action="/order">
<div class="c-products">
{{range .products}}
<div class="c-product">
<h1 class="c-product__name">{{.Name}}</h1>
<img class="c-product__img" src="{{.Image}}"/>
<div class="c-product__order">
<span class="c-product__price">{{formatMoney .Price}}</span>
<span>&times;</span>
<input name="products[{{.ID}}]"class="c-product__input" type="number" value="0">
</div>
</div>
{{end}}
</div>
<div class="c-button-container">
<button class="c-button">Place order</button>
</div>
</form>
</div>
</div>
</main>
{{end}}