mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-12-01 03:30:00 +08:00
47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>docsify</title>
|
|
<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="/themes/vue.css" title="vue">
|
|
<link rel="stylesheet" href="/themes/dark.css" title="dark" disabled>
|
|
<link rel="stylesheet" href="/themes/buble.css" title="buble" disabled>
|
|
<style>
|
|
nav.app-nav li ul {
|
|
min-width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
<script>
|
|
window.$docsify = {
|
|
alias: {
|
|
'/de-de/changelog': '/changelog',
|
|
'/zh-cn/changelog': '/changelog',
|
|
'/changelog': 'https://raw.githubusercontent.com/QingWei-Li/docsify/master/CHANGELOG'
|
|
},
|
|
auto2top: true,
|
|
basePath: '/docs/',
|
|
executeScript: true,
|
|
loadNavbar: true,
|
|
loadSidebar: true,
|
|
name: 'docsify',
|
|
subMaxLevel: 2,
|
|
mergeNavbar: true,
|
|
formatUpdated: '{MM}/{DD} {HH}:{mm}',
|
|
routerMode: 'history',
|
|
plugins: [
|
|
function(hook) {
|
|
hook.beforeEach(function (html) {
|
|
return html += '\n> Last modified {docsify-updated}'
|
|
})
|
|
}
|
|
]
|
|
}
|
|
</script>
|
|
<script src="/lib/docsify.js"></script>
|
|
</html>
|