-
Notifications
You must be signed in to change notification settings - Fork 2
/
webview.html
241 lines (176 loc) · 6.68 KB
/
webview.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="http://allfont.ru/allfont.css?fonts=courier-bold" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Baloo+Chettan" rel="stylesheet">
<style type="text/css">
html{
position: relative;
min-height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
body{
background-color: #36393E;
margin-bottom: 60px;
font-family: 'Baloo Chettan', cursive;
}
.main{
width: 742px;
height: 425px;
}
.col-12{
background-color: #F40006;
height: 50px;
}
#button{
background-color: #F40006;
color: #FFFFFF;
outline: none !important;
box-shadow: none;
}
#list_button{
margin-top: 10px;
}
footer {
position: relative;
margin-top: 100px;
bottom: 0;
width: 100%;
background-color: #36393E;
height: 30px;
font-size: 15px;
margin-right: 15px;
}
</style>
</head>
<body>
<div class="main">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<center>
<h1 style="color: #FFFFFF;">SUPREME BOT</h1>
</center>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="btn-group dropright" id="list_button">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Jackets
</button>
<div class="dropdown-menu">
{% for jacket in jackets %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ jacket }}"> {{ jacket }} </a>
{% endfor %}
</div>
</div>
</div>
<div class="col-6">
<div class="btn-group dropleft" id="list_button" style="float: right; margin-right: 15px;">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Sweatshirts
</button>
<div class="dropdown-menu">
{% for sweatshirt in sweatshirts %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ sweatshirt }}"> {{ sweatshirt }}</a>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="btn-group dropright" id="list_button">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Pants
</button>
<div class="dropdown-menu">
{% for pant in pants %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ pant }}"> {{ pant }}</a>
{% endfor %}
</div>
</div>
</div>
<div class="col-6">
<div class="btn-group dropleft" id="list_button" style="float: right; margin-right: 15px;">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Accessories
</button>
<div class="dropdown-menu">
{% for accessory in accessories %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ accessory }}"> {{ accessory }}</a>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="btn-group dropright" id="list_button">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Shirts
</button>
<div class="dropdown-menu">
{% for shirt in shirts %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ shirt }}"> {{ shirt }}</a>
{% endfor %}
</div>
</div>
</div>
<div class="col-6">
<div class="btn-group dropleft" id="list_button" style="float: right; margin-right: 15px;">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Tops Sweaters
</button>
<div class="dropdown-menu">
{% for sweaters in tops_sweters %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ sweaters }}"> {{ sweaters }}</a>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="btn-group dropright" id="list_button">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Bags
</button>
<div class="dropdown-menu">
{% for bag in bags %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ bag }}"> {{ bag }}</a>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="btn-group dropright" id="list_button">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="button">
Hats
</button>
<div class="dropdown-menu">
{% for hat in hats %}
<a class="dropdown-item" href="https://www.supremenewyork.com/shop/{{ hat }}"> {{ hat }}</a>
{% endfor %}
</div>
</div>
</div>
</div>
<footer class="page-footer font-small blue">
<div class="footer-copyright text-center py-3" style="color: #F40006;">
Developed by:
<a href="https://vk.com/mal_mel"> vk.com/mal_mel</a>
</div>
</footer>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>