71 lines
1.9 KiB
HTML
71 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>WooCommerce Admin</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="description" content="Description" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
|
|
/>
|
|
<!-- Theme: Simple -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://unpkg.com/docsify-themeable/dist/css/theme-simple.css"
|
|
/>
|
|
<!-- Customization -->
|
|
<style>
|
|
:root {
|
|
--theme-color: #7f54b3;
|
|
}
|
|
.markdown-section h1 code,
|
|
.markdown-section h2 code,
|
|
.markdown-section h3 code,
|
|
.markdown-section h4 code {
|
|
/* Code font is slightly larger-scale than heading font, so we'll size it accordingly. */
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
/* custom css for the components page */
|
|
[data-page='components/README.md'] .markdown-section {
|
|
max-width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
[data-page='components/README.md'] iframe {
|
|
border: none;
|
|
outline: none;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8KCYZ2CYMS"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-8KCYZ2CYMS', {
|
|
'content_group' : 'WooCommerce Admin Docs',
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'WooCommerce Admin',
|
|
repo: 'https://github.com/woocommerce/woocommerce-admin',
|
|
loadSidebar: true,
|
|
subMaxLevel: 3,
|
|
search: 'auto',
|
|
};
|
|
</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-themeable"></script>
|
|
</body>
|
|
</html>
|