-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathindex.html
33 lines (33 loc) · 935 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="public/images/resume.png" />
<style>
#page {
border: 1px solid #ccc;
box-shadow: 2px 2px 8px #aaa;
-webkit-box-shadow: 2px 2px 8px #aaa;
-moz-box-shadow: 2px 2px 8px #aaa; }
</style>
</head>
<body id="">
<div id="site">
<div id="header"></div>
<div id="page-container"></div>
<div id="footer">
<address>
<span class="engine" style="font-size:8pt">
Powered by <a href="http://prat0318.github.io/json_resume">JSON Resume</a>, CSS Template by <a href="http://mark.reid.name/">Mark Reid </a>
</span>
</address>
</div>
</div>
</body>
</html>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
$("#page-container").load("page.html")
</script>