This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (51 loc) · 2.14 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Katarogu</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="js/config.js"></script>
<script type="text/javascript" src="js/items.js"></script>
<script type="text/javascript" src="js/lib/jquery.min.js"></script>
<script type="text/javascript" src="js/lib/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="js/lib/jquery.colorbox.min.js"></script>
<script type="text/javascript" src="js/lib/misc.js"></script>
<script type="text/javascript" src="js/lib/product.js"></script>
<script type="text/javascript" src="js/lib/model.js"></script>
<script type="text/javascript" src="js/lib/application.js"></script>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="navigation">
<a href="#toggleCartBox" id="message" title="Cart">Empty cart</a>
</div>
<div id="cart">
<div id="toggleCartBox">
<table id="cartItems">
</table>
</div>
</div>
<div id="search">
<form name="fsearch">
<label for="searchInput" id="searchLabel">Search</label>
<input type="text" name="searchInput" id="searchInput" />
</form>
</div>
<h1 id="name">Katarogu</h1>
</div>
<div id="content">
<ul id="products"></ul>
<form target="_blank" id="frequest" name="frequest" method="post"></form>
</div>
<div id="footer">
<div id="generator">
Powered by <a href="http://katarogu.mcorp.com.br/" target="_blank">Katarogu</a>
</div>
</div>
</div>
<script>
$(document).ready( function() { Katarogu.bootStrap(); });
</script>
</body>
</html>