index.html 960 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>CZRI-ADMIN</title>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  7. <meta name="description" content="Description">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
  9. <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
  10. </head>
  11. <body>
  12. <nav>
  13. <a href="#/zh-cn/">中文文档</a>
  14. <!-- <a href="#/en/">EN</a>-->
  15. <a href="#/">Home</a>
  16. </nav>
  17. <div id="app"></div>
  18. <script>
  19. window.$docsify = {
  20. name: 'CZRI-ADMIN',
  21. nameLink: {
  22. '/zh-cn/': '#/zh-cn/',
  23. '/': '#/',
  24. },
  25. logo: '/_media/icon.svg',
  26. // multiple covers and custom file name
  27. coverpage: {
  28. '/': 'cover.md',
  29. },
  30. homepage: 'zh-cn/README.md'
  31. }
  32. </script>
  33. <!-- Docsify v4 -->
  34. <script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
  35. </body>
  36. </html>