-
Notifications
You must be signed in to change notification settings - Fork 0
/
item.html
103 lines (97 loc) · 4.23 KB
/
item.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="shortcut icon" href="favicon/favicon.ico" />
<link rel="stylesheet" href="css/style.bundle.css" />
<!--<link rel="stylesheet" href="product/product.css" />-->
<title>Electro shop</title>
</head>
<body>
<header class="container bg-primary">
<span id="logo"><img src="uploads/basket.gif" alt="logo"/></span>
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="index.html" title="Electro shop">Electro shop</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link active" href="index.html" title="Index page">Index</a>
<a class="nav-item nav-link" href="pricing.html" title="Pricing page">Pricing</a>
<a class="nav-item nav-link" href="comparator.html" title="Compare Items">Compare Items</a>
<a class="nav-item nav-link" href="basket.html" title="Basket">Basket</a>
<a class="nav-item nav-link disabled" href="#" tabindex="-1">Login</a>
</div>
</div>
</nav>
</header>
<div class="container">
<nav class="row">
<ol class="col-12 col-sm-7 col-md-8 breadcrumb">
<li class="breadcrumb-item active" aria-current="page">Item</li>
</ol>
<div class="col-12 col-sm-5 col-md-4 text-center">
<a href="comparator.html" class="btn btn-light" title="compare"
><span class="ico ico-color_blue ico-160"></span><span id="miniCompare"></span></a
><a href="basket.html" class="btn btn-light" title="basket"
><span class="ico ico-color_blue ico-95"></span><span id="miniBasket"></span
></a>
</div>
</nav>
</div>
<section class="container">
<div class="row" id="item_page"></div>
</section>
<div class="box-alert--fixed">
<div class="alert alert-primary">
<button type="button" id="remove-alarm--cookie" class="btn btn-outline-light btn-sm"><span>x</span></button>By
using our site, you acknowledge that you have read and understand our
<a href="https://stackoverflow.com/legal/cookie-policy" class="alert-link" target="_blank">Cookie Policy</a>,
<a href="https://stackoverflow.com/legal/privacy-policy" class="alert-link" target="_blank">Privacy Policy</a>,
and our
<a href="https://stackoverflow.com/legal/terms-of-service/public" class="alert-link" target="_blank"
>Terms of Service</a
>
</div>
</div>
<footer id="foo-bottom" class="container">
<hr />
<div class="row">
<div class="col col-sm-6 col-md-6">
<p><span class="ico ico-color_gray ico-334"></span> cobrascript</p>
</div>
<div class="col col-sm-6 col-md-6">
<ul class="list-group">
<li>
<span class="ico ico-color_gray ico-178"></span><a href="index.html" title="Index page">Index page</a>
</li>
<li>
<span class="ico ico-color_gray ico-177"></span><a href="pricing.html" title="Pricing page">Pricing</a>
</li>
<li>
<span class="ico ico-color_gray ico-176"></span
><a href="comparator.html" title="Pricing page">Compare Items</a>
</li>
<li><span class="ico ico-color_gray ico-175"></span><a href="basket.html" title="Basket">Basket</a></li>
<li>
<span class="ico ico-color_gray ico-172"></span
><a href="#" tabindex="-1" title="Login" onclick="return false;">Login</a>
</li>
</ul>
</div>
</div>
</footer>
<script src="product/index.bundle.js"></script>
<script src="product/item.bundle.js"></script>
</body>
</html>