This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/templates/shop/articles/id.html

87 lines
3.2 KiB
HTML
Raw Normal View History

2020-01-25 16:41:11 +01:00
<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.75, user-scalable=no">
<title>Sucherergebnisse</title>
<link rel="stylesheet" th:href="@{/css/ecom.css}" />
</head>
<body>
<!-- Dirty hack to align the heading.-->
<nav th:replace="fragments/header :: header">Header</nav>
2020-01-25 16:41:11 +01:00
<main class=" content-width">
<div class="sidebar-layout" style="min-height: 75vh;">
<nav th:replace="fragments/shop :: sidebar"></nav>
2020-01-25 16:41:11 +01:00
<div class="content-width">
<div class="detailgrid">
<div class="s">
2020-01-25 16:41:11 +01:00
<h1>Tolle Kamera</h1>
<script th:src="@{/js/back.js}"></script>
<div class="back" data-group="shop" data-insert="true"></div>
2020-02-04 21:32:19 +01:00
<h2>25.14&nbsp;EUR</h2>
2020-01-25 16:41:11 +01:00
<p>
Eine TOLLE Kamera <br>
Jaja du denkst jetzt bestimmt: "Bei dem Preis kann sie gar nich sooo TOLL sein". <br>
Aber glaub mir, sie is echt echt TOLL! <br>
Indianerehrenwort!
</p>
</div>
<div class="s">
<img th:src="@{/img/product-1.jpg}" />
</div>
<div class="s"></div>
<form class="s" method="POST">
2020-03-06 15:19:56 +01:00
<div class="detailgrid m">
2020-02-04 21:32:19 +01:00
<h2>50.28&nbsp;EUR</h2>
2020-01-25 16:41:11 +01:00
<div>
<label class="nolinebreak">Menge:</label>
<select size="1">
<option>2</option>
</select>
</div>
2020-03-06 15:19:56 +01:00
<h3 class="no-margin secondarytext">Auf Lager</h3>
<button class="no-margin secondary" name="fastcheckout" value="false">In den Einkaufswagen</button>
<button class="no-margin" name="fastcheckout" value="true">Schneller Checkout</button>
</div>
2020-01-25 16:41:11 +01:00
</form>
</div>
</div>
</div>
<div class="sidebar-layout">
<div></div>
<div>
<h1>Weitere Schnäpchen</h1>
<div class='grid m base shadow'>
<section> <a th:href="@{/shop/articles/1234}" class="section">
<img th:src="@{/img/product-4.jpg}">
<h2>Kamera Stativ.</h2>
2020-02-04 21:32:19 +01:00
<p class='price'> 25.14&nbsp;EUR</p>
2020-01-25 16:41:11 +01:00
<p>
Das Stativ der Zukunft! Jetzt kaufen und verwenden für
wackelfreie Bilder aus der Zukunft!.
</p>
</a>
</section>
<section> <a th:href="@{/shop/articles/1234}" class="section">
<img th:src="@{/img/product-5.jpg}">
<h2>Bluetooth Ersatzfernbedinung</h2>
2020-02-04 21:32:19 +01:00
<p class='price'> 10.14&nbsp;EUR</p>
2020-01-25 16:41:11 +01:00
<p>
Kann alles und jeden ausknippsen.
</p>
</a>
</section>
</div>
</div>
</main>
<footer th:replace="fragments/footer :: footer"></footer>
2020-01-25 16:41:11 +01:00
</body>
</html>