mirror of
https://github.com/ruanyf/es6tutorial.git
synced 2025-05-24 10:22:23 +00:00
41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- jQuery -->
|
|
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
|
|
|
|
<script src="js/marked.js"></script>
|
|
<script src="js/ditto.js"></script>
|
|
<script src="js/prism.js"></script>
|
|
<link rel="stylesheet" href="css/app.css">
|
|
<title>ECMAScript 6入门</title>
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<!-- essential -->
|
|
<div id="sidebar"></div>
|
|
<div id="content"></div>
|
|
<!-- optional -->
|
|
<div id="back_to_top">back to top</div>
|
|
<div id="edit">edit</div>
|
|
<div id="loading">Loading ...</div>
|
|
<div id="error">Opps! ... File not found!</div>
|
|
|
|
<script>
|
|
// essential settings
|
|
ditto.index = "README.md",
|
|
ditto.sidebar_file = "sidebar.md",
|
|
|
|
// where the docs are actually stored on github - so you can edit
|
|
ditto.base_url = "https://github.com/ruanyf/es6tutorial/edit/gh-pages/"; // <------- EDIT ME!!
|
|
|
|
// run
|
|
ditto.run();
|
|
</script>
|
|
</body>
|
|
</html>
|