Files
webawesome/docs/index.html
2020-05-22 16:27:48 -04:00

72 lines
2.6 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="/assets/styles/docs.css" />
<link rel="icon" href="/assets/images/logo.svg" type="image/x-icon" />
<!-- Import Shoelace -->
<link rel="stylesheet" href="/assets/dist/shoelace/shoelace.css" />
<script type="module" src="/assets/dist/shoelace/shoelace.esm.js"></script>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
alias: {
'/.*/_sidebar.md': '/_sidebar.md'
},
auto2top: true,
copyCode: {
buttonText: 'Copy Code',
errorText: 'Failed to copy',
successText: 'Copied'
},
executeScript: true,
homepage: 'home.md',
loadSidebar: true,
logo: '/assets/images/wordmark.svg',
maxLevel: 3,
subMaxLevel: 2,
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="https://unpkg.com/prismjs@1.19.0/components/prism-bash.js"></script>
<script src="/assets/scripts/code-block-plugin.js"></script>
<script src="/assets/scripts/component-metadata-plugin.js"></script>
</body>
</html>