forked from yungsamd17/np-carmods
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (95 loc) · 4.66 KB
/
index.html
File metadata and controls
114 lines (95 loc) · 4.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NoPixel Vehicle Mods</title>
<meta name="description" content="LIST OF ALL VEHICLE MODS from NoPixel FiveM Roleplay Server">
<meta property="og:site_name" content="NoPixel Vehicle Mods">
<meta property="og:description" content="LIST OF ALL VEHICLE MODS from NoPixel FiveM Roleplay Server">
<meta property="og:title" content="NoPixel Vehicle Mods">
<meta property="og:image" content="https://yungsamd17.github.io/np-carmods/src/assets/link-preview.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="NoPixel Vehicle Mods">
<meta name="twitter:description" content="LIST OF ALL VEHICLE MODS from NoPixel FiveM Roleplay Server">
<meta name="twitter:image" content="https://yungsamd17.github.io/np-carmods/src/assets/link-preview.png">
<link rel="icon" type="image/png" href="src/assets/favicon.ico" sizes="32x32">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="src/style.css" />
<script type="text/javascript" src="src/js/fetchMods.js" defer></script>
<script type="text/javascript" src="src/js/fetchChangelog.js" defer></script>
<script type="text/javascript" src="src/js/search.js" defer></script>
<script type="text/javascript" src="src/js/intElements.js" defer></script>
<script data-goatcounter="https://yungsamd17.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
<!--<script type="text/javascript" src="https://livejs.com/live.js"></script>-->
</head>
<body>
<!-- Navbar -->
<header>
<div class="navbar">
<!-- Navbar Header -->
<div class="logo">
<a href="https://www.nopixel.net/" title="NoPixel.net Website">
<span class="nopixelLogo">NoPixel</span>
</a>
<span>Vehicle Mods</span>
</div>
<!-- Search input -->
<div class="search">
<input type="search" id="searchInput" class="search-input" placeholder="Search..." autocomplete="off" spellcheck="false" />
</div>
</div>
</header>
<!-- Links, Carmods, Footer -->
<div class="centercolumn">
<!-- Links -->
<div class="linkCard">
<a class="link" href="https://pastebin.com/jsvw46cn" target="_blank" title="NoPixel Vehicle Mods - Pastebin.com">
<i class="fa-regular fa-paste"></i> Pastebin</a>
<a class="link" href="https://github.com/yungsamd17/np-carmods" target="_blank" title="GitHub Repository">
<i class="fa-brands fa-github"></i> GitHub</a>
<a class="link" id="changelogBtn" title="Recent updates changelog">
<i class="fa-regular fa-file-lines"></i> Changelog</a>
<a class="link" style="margin-right: 0;" href="./about" title="About page">
<i class="fa-regular fa-circle-question"></i> About</a>
</div>
<!-- Carmods -->
<div class="card">
<!-- Carmods Info -->
<h2 style="text-align: center; ">4.0 LIST OF MODS IS CURRENTLY WIP</h2>
<h3 style="text-align: center; ">In the meantime you can check out the new <a href="https://www.youtube.com/watch?v=7BdqpQOSF-s" class="accent-link">NoPixel 4.0 Trailer</a></h3>
<span id="searchResultsMessage"></span>
<div id="modList">
<ul id="carList"></ul>
</div>
</div>
<!-- Divider -->
<div class="divider">
<hr>
</div>
<!-- Footer -->
<div class="card footer">
<p>© <script>document.write(/\d{4}/.exec(Date())[0])</script> Sam
<a href="https://yungsamd17.github.io/">@yungsamd17</a> under MIT License</p>
</div>
</div>
<!-- Back to top Button -->
<button onclick="topFunction()" id="topBtn" class="topBtn" title="Back to top"><i class="fa fa-arrow-up"></i></button>
<!-- Changelog Modal -->
<div id="changelogModal" class="modal">
<div class="modalContent">
<div class="modalHeader">
<span class="modalCloseBtn">×</span>
<!-- Modeal Header -->
<h2>Changelog</h2>
</div>
<div class="modalBody">
<!-- Modal Content -->
<div id="changelog">
<ul id="changelog"></ul>
</div>
</div>
</div>
</div>
</body>
</html>