123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>CZRI-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, initial-scale=1.0, minimum-scale=1.0">
- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
- </head>
- <body>
- <nav>
- <a href="#/zh-cn/">中文文档</a>
- <!-- <a href="#/en/">EN</a>-->
- <a href="#/">Home</a>
- </nav>
- <div id="app"></div>
- <script>
- window.$docsify = {
- name: 'CZRI-ADMIN',
- nameLink: {
- '/zh-cn/': '#/zh-cn/',
- '/': '#/',
- },
- logo: '/_media/icon.svg',
- // multiple covers and custom file name
- coverpage: {
- '/': 'cover.md',
- },
- homepage: 'zh-cn/README.md'
- }
- </script>
- <!-- Docsify v4 -->
- <script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
- </body>
- </html>
|