kopia lustrzana https://github.com/shoelace-style/shoelace
102 wiersze
4.3 KiB
HTML
102 wiersze
4.3 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="Shoelace provides a collection of professionally designed, every day UI components built on a framework-agnostic technology."
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
|
|
/>
|
|
<meta property="og:title" content="Shoelace" />
|
|
<meta
|
|
property="og:description"
|
|
content="Shoelace provides a collection of professionally designed, every day UI components built on a framework-agnostic technology."
|
|
/>
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://shoelace.style/" />
|
|
<meta property="og:image" content="https://shoelace.style/assets/images/og-image.png" />
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@shoelace_style" />
|
|
<meta name="twitter:creator" content="@claviska" />
|
|
<meta name="twitter:title" content="Shoelace" />
|
|
<meta
|
|
name="twitter:description"
|
|
content="Shoelace provides a collection of professionally designed, every day UI components built on a framework-agnostic technology."
|
|
/>
|
|
<meta name="twitter:image" content="https://shoelace.style/assets/images/twitter-card.png" />
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify/themes/pure.css" />
|
|
<link rel="stylesheet" href="/assets/styles/docs.css" />
|
|
<link rel="stylesheet" href="/assets/styles/docs-dark.css" />
|
|
<link rel="stylesheet" href="/assets/styles/demos.css" />
|
|
<link rel="stylesheet" href="/assets/plugins/code-block/code-block.css" />
|
|
<link rel="stylesheet" href="/assets/plugins/theme/theme.css" />
|
|
<link rel="icon" href="/assets/images/logo.svg" type="image/x-icon" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/touch-icon.png" />
|
|
|
|
<!-- Import Shoelace -->
|
|
<link rel="stylesheet" href="/dist/shoelace/shoelace.css" />
|
|
<link rel="stylesheet" href="/themes/dark.css" />
|
|
<script type="module" src="/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'
|
|
},
|
|
coverpage: false,
|
|
executeScript: true,
|
|
ga: 'UA-6412891-16',
|
|
homepage: '/getting-started/overview.md',
|
|
loadSidebar: true,
|
|
logo: '/assets/images/wordmark.svg',
|
|
maxLevel: 3,
|
|
subMaxLevel: 2,
|
|
name: 'Shoelace',
|
|
notFoundPage: '404.md',
|
|
pagination: {
|
|
previousText: 'Previous',
|
|
nextText: 'Next',
|
|
crossChapter: true,
|
|
crossChapterText: false
|
|
},
|
|
routerMode: window.ShoelaceDevServer ? 'hash' : 'history',
|
|
search: {
|
|
maxAge: 86400000, // Expiration time, the default one day
|
|
paths: 'auto',
|
|
placeholder: 'Search',
|
|
noData: 'No Results',
|
|
depth: 3,
|
|
namespace: 'shoelace-docs'
|
|
},
|
|
themeColor: '#049dff'
|
|
};
|
|
</script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/ga.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify-copy-code"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.19.0/components/prism-bash.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.19.0/components/prism-jsx.min.js"></script>
|
|
<script src="/assets/plugins/code-block/code-block.js"></script>
|
|
<script src="/assets/plugins/metadata/metadata.js"></script>
|
|
<script src="/assets/plugins/sidebar/sidebar.js"></script>
|
|
<script src="/assets/plugins/theme/theme.js"></script>
|
|
</body>
|
|
</html>
|