This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsroguelike.html
45 lines (39 loc) · 1.75 KB
/
sroguelike.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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset='utf-8' />
<meta name="description" content="SRoguelike project page (for developer reference)"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link href="/favicon.png" rel="apple-touch-icon">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>2CatStudios // SRoguelike</title>
<script>
if (!(window.location.host.startsWith("127.0.0.1") || window.location.host.startsWith("localhost")) && (window.location.protocol != "https:"))
window.location.protocol = "https";
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-57157141-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript">
function verifyAge () {
if(window.location.href.indexOf("?AgeVerified") == -1) {
this.location='/agegate.html#sroguelike';
}
}
</script>
</head>
<body onload="verifyAge();">
<div id="main_content_wrap" class="outer">
<iframe name="index" src=/index.html id="iframe"></iframe>
<section id="main_content" class="inner">
<p>This is all just a test. Thank you for verifying that it worked (or did it?).</p>
</section>
<br>
<blockquote>If you want to suggest what S might mean, drop us an email at <a href="mailto:gibsonbethke@gmail.com?subject=S%20Stands%20For...">gibsonbethke@gmail.com</a>!</blockquote>
</div>
</body>
</html>