-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (129 loc) · 5.06 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="static/css/bootstrap/bootstrap.css" rel="stylesheet">
<link href="static/css/index.css" rel="stylesheet">
<script src="static/js/bootstrap.js"></script>
<title>Paskal</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid navbar-dark">
<a class="navbar-brand" href="#">Чего я добился в Dota 2</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="https://steamcommunity.com/profiles/76561198193135930/" target="_blank">Профиль в Steam</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="https://www.dotabuff.com/players/232870202" target="_blank">DotaBuff</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="https://vk.com/shytki_minutki" target="_blank">Паблик с мемами</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<div class="container mt-4 mb-4 text-center records bg-dark text-white custom-container">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12 p-2">
<div class="block border-light">
<p>
Первая игра:
28.04.2015
</p>
<button id="bt-1" type="button" class="btn btn-outline-info">View replay</button>
</div>
</div>
<div class="col-md-3 col-sm-6 p-2">
<div class="block">
<p>
Игр сыграно:
768
</p>
</div>
<div class="block">
<p>
Из них в Turbo:
606
</p>
</div>
</div>
<div class="col-md-3 col-sm-6 p-2">
<div class="block">
Винрейт в Турбо:
50.66%
</div>
</div>
<div class="col-md-3 col-sm-6 p-2">
<div class="block">
Винрейт в соло подборе:
51.53%
</div>
</div>
</div>
</div>
<div class="line"></div>
<div class="hero-stat container text-center mt-4">
<div class="col">
<table class="hero-table table table-striped table-dark table-bordered">
<thread>
<th scope="col">Герой</th>
<th scope="col">Кол-во игр</th>
<th scope="col">Винрейт</th>
</thread>
<tbody>
<tr>
<th scope="row"><img src="static/img/mereska.png" alt="hero"></th>
<td>400</td>
<td>75%</td>
</tr>
<tr>
<th scope="row"><img src="static/img/weaver.png" alt="hero"></th>
<td>250</td>
<td>64%</td>
</tr>
<tr>
<th scope="row"><img src="static/img/silencer.png" alt="hero"></th>
<td>30</td>
<td>51%</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="line"></div>
<div class="container mt-4 mb-4 text-center bg-dark text-white custom-container">
<div class="row pt-4 py-2 pb-3">
<div class="col-md-8 col-sm-6">
<div class="block">
<p>Хочешь сыграть со мной?</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="btn-group" role="group" aria-label="Contact">
<a role="button" class="btn btn-outline-success" href="add_friend.html">
Хочу
</a>
<button type="button" class="btn btn-outline-danger" id="sadAlertBtn">Не хочу(</button>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div id="liveAlertPlaceholder"></div>
</div>
</div>
</div>
</main>
</body>
<script src="static/js/alert.js"></script>
</html>