mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-30 10:47:44 +08:00
52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hyperf</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">
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
<style>
|
|
.app-name-link img {
|
|
width: 16%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
|
<script src="//unpkg.com/prismjs/components/prism-php.min.js"></script>
|
|
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'Hyperf',
|
|
repo: 'hyperf-cloud/hyperf',
|
|
loadSidebar: 'summary.md',
|
|
loadNavbar: true,
|
|
fallbackLanguages: ['zh', 'en'],
|
|
mergeNavbar: true,
|
|
themeColor: '#3F51B5',
|
|
logo: '/logo.png',
|
|
auto2top: true,
|
|
autoHeader: false,
|
|
subMaxLevel: 4,
|
|
search: {
|
|
depth: 6
|
|
},
|
|
alias: {
|
|
'/summary.md': './zh/summary.md'
|
|
},
|
|
plugins: [
|
|
EditOnGithubPlugin.create('https://github.com/hyperf-cloud/hyperf/tree/master/doc/')
|
|
]
|
|
}
|
|
</script>
|
|
<script src="//unpkg.com/docsify-copy-code"></script>
|
|
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|