mirror of
https://gitlab.com/vindarel/ciel.git
synced 2026-01-11 19:51:59 -08:00
71 lines
2.6 KiB
HTML
71 lines
2.6 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;">',
|
|
'<div style=\"color: dimgrey\">CIEL developers 2023. <a href="https://github.com/sponsors/vindarel/">Show your love!</a></div>',
|
|
'<div style=\"color: dimgrey\"> Discover our <a href="https://www.udemy.com/course/common-lisp-programming/?referralCode=2F3D698BBC4326F94358" style=\"color: dimgrey\">Common Lisp course in videos.</a></div>',
|
|
'</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>
|
|
<script defer data-domain="ciel-lang.org" src="https://plausible.io/js/script.js"></script>
|
|
</body>
|
|
</html>
|