-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
52 lines (47 loc) · 1.87 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
<!--
Copyright 2018 [email protected]
You can copy and use this code if you agree to pay $1 per page load.
-->
<html>
<head>
<title>Main Index</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116189657-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116189657-1');
</script>
<style>
.dropdown-menu>li>a, .dropdown-menu {
color: white;
background-color: #6c757d;
}
</style>
</head>
<script>
$.ajaxSetup ({
// Disable caching of AJAX responses
cache: false
});
$(document).ready(function(){
$('#headerDiv').load("/header.html");
$('#ck').load("/ck/index.html #indexContent");
$('#axie').load("/axie/index.html #indexContent");
$('#csc').load("/csc/index.html #indexContent");
});
</script>
<body>
<!-- header -->
<div id="headerDiv"></div><br/>
<div id="ck"></div><br/>
<div id="axie"></div><br/>
<div id="csc"></div><br/>
<br/>
<br/><br/><br/>
<div class="container">Contact: Twitter @irfreak</div><br/>
</body>
</html>