Files
webawesome/docs/index.html
2020-03-11 22:17:20 -04:00

67 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Shoelace: A forward-thinking library of Web Components.</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Stencil Component Starter" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css" />
<link rel="stylesheet" href="/styles/docs.css" />
<link rel="icon" href="/assets/images/favicon.png" type="image/x-icon" />
<!-- Import Shoelace -->
<link rel="stylesheet" href="/dist/shoelace/shoelace.css" />
<script type="module" src="/dist/shoelace/shoelace.esm.js"></script>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
copyCode: {
buttonText: 'Copy Code',
errorText: '✖️',
successText: '✔'
},
executeScript: true,
homepage: 'home.md',
loadSidebar: true,
logo: '/assets/images/wordmark.svg',
maxLevel: 3,
name: 'Shoelace',
notFoundPage: '404.md',
pagination: {
previousText: 'Previous',
nextText: 'Next up',
crossChapter: true,
crossChapterText: false
},
repo: '',
repo: 'https://github.com/claviska/shoelace/',
routerMode: 'hash', // history | hash
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: 'auto', // or 'auto'
placeholder: 'Search',
noData: 'No Results',
depth: 3,
hideOtherSidebarContent: true,
namespace: 'shoelace-docs'
},
themeColor: '#049dff'
};
</script>
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="https://unpkg.com/docsify-copy-code"></script>
<script src="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="/scripts/code-block-plugin.js"></script>
<script src="https://unpkg.com/prismjs@1.19.0/components/prism-bash.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.0.0/dist/ionicons/ionicons.esm.js"></script>
</body>
</html>