-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 8cf4558
Showing
221 changed files
with
21,600 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,4 @@ | ||
{ | ||
"directory": "static/js", | ||
"json": "bower.json" | ||
} |
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,58 @@ | ||
<!doctype html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<meta name="viewport" content="width=device-width"> | ||
|
||
<link rel="shortcut icon" href="./static/favicon.ico"> | ||
<link rel="stylesheet" href="./static/css/style.css"> | ||
|
||
|
||
<title>Welcome</title> | ||
|
||
|
||
</head> | ||
<body> | ||
|
||
<script type="text/javascript" charset="utf-8" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | ||
|
||
<script type="text/javascript" charset="utf-8"> | ||
$(document).ready(function() { | ||
|
||
// Add the missing url to the text | ||
$("#url").text(window.location.pathname); | ||
|
||
// Fix the css locations dynamically | ||
$("head link").each(function() { | ||
for (var i=0; i<window.location.pathname.split(/\//g).length-2; i++) | ||
$(this).attr("href", "../" + $(this).attr("href")); | ||
}); | ||
|
||
}) | ||
</script> | ||
|
||
<p> | ||
Sorry the page <b id="url"></b> could not be found on this server. | ||
</p> | ||
|
||
|
||
|
||
<script src="./static/js/jquery/jquery.min.js"></script> | ||
<script src="./static/js/classie/classie.js"></script> | ||
<script src="./static/js/eventEmitter/eventEmitter.min.js"></script> | ||
<script src="./static/js/eventie/eventie.js"></script> | ||
<script src="./static/js/doc-ready/doc-ready.js"></script> | ||
<script src="./static/js/get-style-property/get-style-property.js"></script> | ||
<script src="./static/js/jquery-bridget/jquery.bridget.js"></script> | ||
<script src="./static/js/matches-selector/matches-selector.js"></script> | ||
<script src="./static/js/get-size/get-size.js"></script> | ||
<script src="./static/js/packery/js/rect.js"></script> | ||
<script src="./static/js/packery/js/item.js"></script> | ||
<script src="./static/js/packery/js/packer.js"></script> | ||
<script src="./static/js/packery/js/packery.js"></script> | ||
<script src="./static/js/jquery.transit/jquery.transit.js"></script> | ||
<script src="./static/js/main.js"></script> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.