mirror of
https://github.com/elisspace/skills-connect-the-dots.git
synced 2026-08-29 15:44:07 +00:00
24 lines
639 B
HTML
24 lines
639 B
HTML
<!-- index.html -->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
window.$docsify = {
|
|
name: "skills-connect-the-dots",
|
|
repo: "elisspace/skills-connect-the-dots",
|
|
homepage: "index.html",
|
|
loadSidebar: true,
|
|
};
|
|
</script>
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
|
</body>
|
|
</html>
|