ciel/docs/index.html
2020-12-15 13:24:34 +01:00

69 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</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"> -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/themes/vue.css" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'CIEL',
repo: 'https://github.com/ciel-lang/CIEL',
<!-- basePath: 'https://ciel-lang.org/', -->
basePath: 'https://ciel-lang.github.io/CIEL/',
<!-- basePath: '/', <\!-- for development -\-> -->
coverpage: true,
coverpage: ['/', '/fr/'],
auto2top: true,
loadSidebar: true,
subMaxLevel: 3,
loadNavbar: true,
themeColor: '#0085bd',
search: {
maxAge: 86400000*3, // Expiration time, the default one day
placeholder: 'Search…',
noData: 'No Results!',
// Headline depth, 1 - 6
depth: 3,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
// To avoid search index collision
// between multiple websites under the same domain
namespace: 'ciel-lang.org',
},
plugins: [
function(hook) {
var footer = [
'<hr/>',
'<footer style="text-align: right;">',
'<span>CIEL developers 2020. <a href="https://github.com/sponsors/vindarel/">Show your love!</a></span>',
'</footer>'
].join('');
hook.afterEach(function(html) {
return html + footer;
});
}
]
}
</script>
<!-- <script src="//unpkg.com/docsify/lib/docsify.min.js"></script> -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-lisp.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code@2"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
</body>
</html>