20 lines
690 B
HTML
20 lines
690 B
HTML
{{define "base"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Elektromarket</title>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="static/css/style.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="headerColumn"><a href="http://127.0.0.1:8000"><div class="logoIcon"></div></a></div>
|
|
<div class="headerColumn"><a href="http://127.0.0.1:8000/cart"><div class="cartIcon"><div class="cartItems">{{.cart.ItemsTotal}}</div></a></div>
|
|
</header>
|
|
<div id="container">{{template "content" .}}</div>
|
|
</body>
|
|
</html>
|
|
{{end}}
|