blob: af68c7c6344c7bf3c2b149926d0bc8697f6b6552 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./readme.css" >
<title>Read Me</title>
<script src="//code.jquery.com/jquery.min.js"></script>
</head>
<body>
<div id="page-wrapper">
<div id="page-setup"></div>
<div id="right-col">
<ul>
<li class="title">
<p>Logging</p>
</li>
<li class="info-title">
<p>Information Title</p>
</li>
<li class="info">
<p>Information</p>
</li>
</ul>
</div>
</div>
<script>
$.get("page.html", function(data){
$("#page-setup").replaceWith(data);
});
$(window).load(function() {
$("body").fadeIn(.5);
});
</script>
</body>
</html>
|