-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
134 lines (119 loc) · 4.48 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
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<title>MEATSHOT</title>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type":"VideoGame",
"operatingSystem":"Windows, Mac, Linux",
"applicationCategory":"Game",
"name":[
{
"@language":"en",
"@value":"Remnants of Naezith"
}
],
"description":[
{
"@language":"en",
"@value":"Rush and swing through levels to top the leaderboards in this fast-paced, grappling hook precision platformer."
}
],
"genre":[
"Action",
"Platformer"
],
"url":"https://naezith.com",
"image":"https://i.naezith.com/poster.png",
"screenshot":"https://i.naezith.com/background.png",
"sameAs": [
"https://naezith.gamepedia.com",
"https://www.youtube.com/channel/UCnjzVcfeV5OaXQFn4OsTr8A"
],
"trailer":{
"@type":"VideoObject",
"name":"Remnants of Naezith - Release Trailer",
"description":"Rush and swing through levels to top the leaderboards in this fast-paced, grappling hook precision platformer.",
"thumbnailUrl":"http://img.youtube.com/vi/fc--XUEZDg4/maxresdefault.jpg",
"uploadDate":"Jan 13, 2018",
"url":"https://www.youtube.com/watch?v=fc--XUEZDg4",
"inLanguage":"en"
}
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-88017924-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-88017924-1');
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
function getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++) {
hash = hashes[i].split('=');
vars[hash[0]] = hash[1];
}
return vars;
}
$(document).ready(function() {
// Page navigation
var curr_pg = getUrlVars()['id'] || 'home';
// Set Nav buttons
var pages = ['home', 'contact', 'gallery', 'reviews'];
for(var i in pages) { var pg = pages[i];
var class_tag = pg == 'home' ? 'page home' : 'page';
$('#nav-' + pg).replaceWith(curr_pg == pg ? ('<span class="'+class_tag+'">'+pg+'</span>') : ('<a class="'+class_tag+'" href="'+(pg == 'home' ? '.' : ('?id='+pg))+'">'+pg+'</a>'));
}
// Load the page content
$("#midcontent").load('p/' + curr_pg + '.html');
// Do server request
if (getUrlVars()['h']) {
$.get('https://ron.naezith.com/presskit?id=' + getUrlVars()['h'], function(response) {});
}
});
</script>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" type="image/x-icon" href="img/k.ico">
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<meta name="description" content="A fast-paced platformer which has the grappling hook in it's core!">
</head>
<body>
<div id="banner"></div>
<header>
<a href="https://store.steampowered.com/app/2537650/" target="_blank"><img src="img/title.png" alt="MEATSHOT"></a>
<span class="po"></span>
</header>
<div id="wrap">
<nav>
<div>
<div id="nav-home"></div>
<a href="https://hub.naezith.com" target="_blank"><img src="img/n.png" alt="">ron.hub</a>
<a href="https://ds.naezith.com" target="_blank"><img src="img/n.png" alt="">ds.hub</a>
<a href="https://discord.gg/naezith" target="_blank"><img src="img/d.png" alt="">discord</a>
<a href="https://twitter.com/naezith" target="_blank" ><img src="img/t.png" alt="">twitter</a>
<div id="nav-contact"></div>
</div>
</nav>
<main id="midcontent"></main>
</div>
<footer>
<a href="https://meatshot.me/">MEATSHOT Presskit</a>
<a href="?id=ds_presskit">Dream Swing Presskit</a>
<a href="?id=presskit">RoN Presskit</a>
<a target="_blank" href="https://fix.naezith.com/">Troubleshooting</a>
<a target="_blank" href="https://en.wikipedia.org/wiki/Remnants_of_Naezith">RoN Wikipedia</a>
<span>© Tolga Ay 2025</span>
<a href="https://www.indiedb.com/games/dreamswing" title="View Dream Swing on Indie DB" target="_blank"><img src="https://button.indiedb.com/popularity/medium/games/80455.png" alt="Dream Swing" /></a>
<a href="http://www.indiedb.com/games/naezith" title="View Remnants of Naezith on Indie DB" target="_blank"><img src="https://button.indiedb.com/popularity/medium/games/49414.png" alt="Remnants of Naezith"></a>
<span>website by decldev</span>
<span class="pb"></span>
</footer>
</body>
</html>