-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="/images/1496643716_fruiticons_buttons_pineapple.png" type="image/png">
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Istok+Web:400,400i,700,700i&subset=cyrillic-ext" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="coins.css">
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script src="tr.js"></script>
<script src="coins.js"></script>
</head>
<body>
<div class="header">ananasmkr.ru</div>
<!--Всего монет: <span id="coins-count">Неизвестно</span>-->
<table>
<tr>
<form>
<p><input id="searchf" type="search" placeholder="Поиск">
</form>
</tr>
<tr>
<td id="col">
<div id="collections" class="layer">Коллекции</div>
</td>
<td id="coins-column">
<div id="coins" class="layer">Монеты</div>
</td>
</tr>
</table>
<script>
//updateCoinsCount();
var currentCol = localStorage.getItem("currentCol");
if (currentCol === null){
currentCol = "bons_rf_pam";
}
updateCollections(currentCol);
</script>
</body>
</html>