mirror of
https://github.com/IdleEndeavor/gamesearch.git
synced 2025-04-29 22:24:33 +02:00
90 lines
4.0 KiB
HTML
90 lines
4.0 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Rave Game Search</title>
|
|
|
|
<link rel="stylesheet" href="css/index.css">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<meta property="og:type" content="website">
|
|
<meta property="twitter:title" content="Rave Game Search">
|
|
<meta property="og:title" content="Rave Game Search">
|
|
<meta property="twitter:card" content="summary">
|
|
<meta property="twitter:description" content="Find the safest free download links to your favorite Video Games">
|
|
<meta property="og:description" content="Find the safest free download links to your favorite Video Games">
|
|
<meta property="twitter:image" content="https://ravegamesearch.pages.dev/img/ravesearch.png">
|
|
<meta property="og:image" content="https://ravegamesearch.pages.dev/img/ravesearch.png">
|
|
<meta property="description" content="Find the safest free download links to your favorite Video Games">
|
|
<link href="img/favicon.png" rel="shortcut icon">
|
|
<meta name="theme-color" content="#F63F4D">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<!-- Engine Switcher -->
|
|
<div class="engine-swticher">
|
|
<a href="https://ravegamesearch.pages.dev">> Game Search</a>
|
|
<a href="https://ravebooksearch.com">Book Search</a>
|
|
<a href="https://ravesoftwaresearch.pages.dev">Software Search</a>
|
|
</div>
|
|
<!-- Search Box -->
|
|
<div class="maindiv">
|
|
<div class="searchlogo">
|
|
<img class="searchlogo" src="img/search-logo.png" onclick="location.href='index.html';">
|
|
</div>
|
|
<script>
|
|
(function() {
|
|
var cx = "001315572920893299880:p3yigpygfny";
|
|
var gcse = document.createElement("script");
|
|
gcse.type = "text/javascript";
|
|
gcse.async = true;
|
|
gcse.src = "https://cse.google.com/cse.js?cx=" + cx;
|
|
var s = document.getElementsByTagName("script")[0];
|
|
s.parentNode.insertBefore(gcse, s);
|
|
})();
|
|
window.onload = function()
|
|
{
|
|
var searchBox = document.getElementById("gsc-i-id1");
|
|
searchBox.placeholder="Search for your favourite Games";
|
|
searchBox.title="Rave Game Search Engine";
|
|
}
|
|
</script>
|
|
<gcse:search class="searchbox"></gcse:search>
|
|
</div>
|
|
</div>
|
|
<!-- Games Found Counter -->
|
|
<div class="games-found">
|
|
<a class="count">0</a>
|
|
<a>Games Found</a>
|
|
</div>
|
|
<script type="text/javascript">
|
|
function updateCounter() {
|
|
fetch('https://api.countapi.xyz/update/ravegamesearch/ravesearch/?amount=1')
|
|
.then(res => res.json())
|
|
.then(data => counterElement.innerHTML = data.value)
|
|
}
|
|
|
|
updateCounter()
|
|
|
|
counterElement = document.getElementsByClassName('count')[0];
|
|
</script>
|
|
<!-- Terms of Use, Privacy Policy and GitHub Link -->
|
|
<div class="terms">
|
|
<a href="https://github.com/IdleEndeavor/gamesearch">GitHub |</a>
|
|
<a href="https://github.com/IdleEndeavor/gamesearch#privacy-policy">Privacy Policy |</a>
|
|
<a href="https://github.com/IdleEndeavor/gamesearch#terms-of-use">Terms of Use</a>
|
|
</div>
|
|
|
|
<!-- FAB Wheel -->
|
|
<div class="adminActions">
|
|
<input type="checkbox" name="adminToggle" class="adminToggle" />
|
|
<a class="adminButton" href="#!"><i class="material-icons">lightbulb</i></a>
|
|
<div class="adminButtons">
|
|
<a href="https://github.com/IdleEndeavor/gamesearch" title="GitHub"><i class="material-icons">code</i></a>
|
|
<a href="https://github.com/IdleEndeavor/gamesearch#terms-of-use" title="Terms"><i class="material-icons">gavel</i></a>
|
|
<a href="https://github.com/IdleEndeavor/gamesearch#privacy-policy" title="Privacy"><i class="material-icons">security</i></a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |