-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·114 lines (114 loc) · 5.63 KB
/
index.html
File metadata and controls
executable file
·114 lines (114 loc) · 5.63 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>
<head>
<title>Zadaroo - Free Metaverse Resources</title>
<!-- Force https -->
<script>
if (location.protocol !== 'https:') {
location.replace(`https:${location.href.substring(location.protocol.length)}`);
}
</script>
<!-- Privacy Respecting Analytics -->
<script async src="https://stats.hack13.cloud/script.js" data-website-id="460436e5-629e-4fcc-a30e-9cea9296c6d3"></script>
<!-- jQuery -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js"></script>
<!-- Bootstrap CDN -->
<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">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script>
$(document).ready(function() {
$("#home").click(function(event){
$('#contentbox').load('home.html')
})
$("#downloads").click(function(event){
$('#contentbox').load('downloads.html')
})
$("#iars").click(function(event){
$('#contentbox').load('iars.html')
})
$("#oars").click(function(event){
$('#contentbox').load('oars.html')
})
$("#licensing").click(function(event){
$('#contentbox').load('licensing.html')
})
$("#animations").click(function(event){
$('#contentbox').load('animations.html')
})
$("#xmlimports").click(function(event){
$('#contentbox').load('xmlimports.html')
})
$("#clothing").click(function(event){
$('#contentbox').load('clothing.html')
})
$("#terrain").click(function(event){
$('#contentbox').load('terrain.html')
})
$("#textures").click(function(event){
$('#contentbox').load('textures.html')
})
$("#sculpts").click(function(event){
$('#contentbox').load('sculptmaps.html')
})
})
</script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Zadaroo</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" id="home" href="#">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Downloads</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#" id="xmlimports">XML Imports</a>
<a class="dropdown-item" href="#" id="clothing">Clothing & Body</a>
<a class="dropdown-item" href="#" id="animations">Animations & Poses</a>
<a class="dropdown-item" href="#" id="terrain">Terrain</a>
<a class="dropdown-item" href="#" id="textures">Textures</a>
<a class="dropdown-item" href="#" id="sculpts">Sculpts</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" id="iars" href="#">IARs</a>
</li>
<li class="nav-item">
<a class="nav-link" id="oars" href="#">OARs</a>
</li>
<li class="nav-item">
<a class="nav-link" id="licensing" href="#">Licensing</a>
</li>
<li class="nav-item">
<a class="nav-link" id="source-code" href="https://github.com/hack13/Zadaroo" rel="noopener noreferrer" target="_blank">Source Code</a>
</li>
</ul>
</div>
</nav>
<main role="main" class="flex-shrink-0">
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>Notice:</strong> If you would like to access the archived legacy site, you can at <a href="https://legacy.zadaroo.com/">Zadaroo Legacy</a>.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br/>
<div id="contentbox">
<p>Your browers doesn't support JavaScript</p>
</div>
<br />
<tt>Site Hosted by <a href="https://pages.github.com/" rel="noopener noreferrer" target="_blank">GitHub Pages</a> & Files CDN Hosted by <a href="https://bunny.net/" rel="noopener noreferrer" target="_blank">BunnyNet</a>, Designed and Managed by: Timothy Francis Rogers (aka <a href="https://hack13.me/" rel="noopener noreferrer" target="_blank">hack13</a>)
<br>
<tt>Site Privacy Respecting Analytics: <a href="https://stats.hack13.cloud/share/4QP2dqH32oAYyRyE/Zadaroo">View Public Analytics</a></tt>
</div>
</main>
<script>
$('#contentbox').load('home.html');
</script>
</body>