ittech/w6/templates/goodsPage.html
2022-03-14 12:05:26 +07:00

35 lines
No EOL
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>"{{good.title}}" good page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<main id="mainPageMain">
<section class="goodsSection">
<a href="/category/{{good.category}}">&gt;&gt;&gt; Go back to category "{{good.category}}"</a>
<hr>
<h2>Vieweing "{{good.title}}":</h2>
<p>In system since: {{good.registered}}</p>
<hr>
Seller profile: <a href="/user/{{user.guid}}">{{user.fullName}}</a>
<hr>
<h3>Description:</h3>
<p>{{good.description}}</p>
<br>
<h3>Price:</h3>
<p>{{good.price}} CR per unit</p>
</section>
</main>
</body>
</html>