-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
779 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Resume</title> | ||
|
||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
</head> | ||
<body id=""> | ||
<div id="site" style="margin: 0.0em auto 0.0em auto; max-width: 52em;"> | ||
<div id="page-container"></div> | ||
</div> | ||
</body> | ||
</html> | ||
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | ||
<script> | ||
$("#page-container").load("page.html") | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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"> | ||
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> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.