19 lines
424 B
HTML
19 lines
424 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>GitHub Burndown Chart</title>
|
|
|
|
<link href="build.css" media="all" rel="stylesheet" type="text/css" />
|
|
<script src="build.js"></script>
|
|
<script>
|
|
document.onreadystatechange = function() {
|
|
if (document.readyState == "complete") {
|
|
require('app').call(null);
|
|
}
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |