-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathcs2.html
More file actions
74 lines (66 loc) · 3.47 KB
/
cs2.html
File metadata and controls
74 lines (66 loc) · 3.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>voxlis - CS2</title>
<link rel="icon" href="/public/assets/icons/images/taskbar.ico" type="image/x-icon">
<link rel="shortcut icon" href="/public/assets/icons/images/taskbar.ico" type="image/x-icon">
<link rel="stylesheet" href="/global.css">
<link rel="stylesheet" href="/src/components/global/navbar/navbar.css">
<link rel="stylesheet" href="/src/components/modals/filter/filter.css">
<link rel="stylesheet" href="/src/components/global/layout/layout.css">
<link rel="stylesheet" href="/src/components/objects/promo/promo.css">
<link rel="stylesheet" href="/src/components/objects/featured/featured.css">
<link rel="stylesheet" href="/src/components/modals/more-info-modal/more-info-modal.css">
<link rel="stylesheet" href="/src/components/modals/warning-modal/warning-modal.css">
<link rel="stylesheet" href="/src/components/modals/sunc-modal/sunc-modal.css">
<link rel="stylesheet" href="/src/components/objects/cards/cards.css">
<link rel="stylesheet" href="/src/components/modals/themes/themes.css">
<link rel="stylesheet" href="/src/components/global/footer/footer.css">
<link rel="stylesheet" href="/src/components/modals/custom-theme/custom-theme.css">
<link rel="stylesheet" href="/src/components/modals/notification/site-toast.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/atom-one-dark.min.css">
</head>
<body data-catalog-page="cs2">
<div id="navbarMount"></div>
<div id="filterMount"></div>
<main class="cntr main-lyt">
<aside class="layout-left" aria-label="Left featured ads">
<div id="featuredMountLeft"></div>
<div id="featuredMountLeftSecondary"></div>
</aside>
<section class="layout-center">
<div id="promoMount"></div>
<div id="cardsMount"></div>
</section>
<aside class="layout-right" aria-label="Featured ads">
<div id="featuredMount"></div>
<div id="featuredMountSecondary"></div>
</aside>
</main>
<div id="themesMount"></div>
<div id="footerMount"></div>
<script src="/src/config/pages/global.js"></script>
<script src="/src/config/pages/roblox.js"></script>
<script src="/src/config/pages/cs2.js"></script>
<script src="/src/config/global/logic.js"></script>
<script src="/src/config/global/themes.js"></script>
<script src="/src/components/global/navbar/navbar.js"></script>
<script src="/src/components/modals/filter/filter.js"></script>
<script src="/src/components/objects/featured/featured.js"></script>
<script src="/src/components/objects/promo/promo.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
<script src="/src/components/modals/more-info-modal/more-info-modal.js"></script>
<script src="/src/components/modals/warning-modal/warning-modal.js"></script>
<script src="/src/components/modals/sunc-modal/sunc-modal.js"></script>
<script src="/src/components/objects/cards/cards-catalog.js"></script>
<script src="/src/components/modals/themes/themes.js"></script>
<script src="/src/components/global/footer/footer.js"></script>
<script src="/src/components/modals/custom-theme/custom-theme.js"></script>
<script src="/src/components/modals/notification/site-toast.js"></script>
<script src="/src/main.js"></script>
</body>
</html>