add files
This commit is contained in:
parent
a6a9d20826
commit
70dfd04c20
4 changed files with 111 additions and 0 deletions
12
README.md
Normal file
12
README.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<img src="images/banner.png" alt="LUX's Owner" width="100%"/>
|
||||
|
||||
## The LUX
|
||||
|
||||
> Awesome Documentation Project.
|
||||
|
||||
## Contained Pages
|
||||
|
||||
1. [Home](README.md)
|
||||
2. [Blog](author.md)
|
||||
3. [Page](page.md)
|
||||
4. [License](license.md)
|
||||
76
index.html
Normal file
76
index.html
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta charset="UTF-8" />
|
||||
<title>Docsify Project</title>
|
||||
<meta name="description" content="Awesome documentation By LUX's Owner"/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"/>
|
||||
<link rel="stylesheet" href="assets/css/main.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">Documentation Site of The LUX's Owner...</div>
|
||||
<script>
|
||||
window.$docsify = {
|
||||
// General
|
||||
// -------
|
||||
name: 'Docsify Project',
|
||||
nameLink: '/',
|
||||
repo: 'https://gitnet.fr/luxowner/pages',
|
||||
coverpage: true,
|
||||
loadNavbar: true,
|
||||
loadSidebar: true,
|
||||
# themeColor: 'darkred',
|
||||
// Navigation
|
||||
// -----------
|
||||
auto2top: true,
|
||||
autoHeader: true,
|
||||
maxLevel: 3,
|
||||
mergeNavbar: true,
|
||||
subMaxLevel: 3,
|
||||
// Plugins
|
||||
// --------
|
||||
executeScript: true,
|
||||
search: {
|
||||
depth: 3,
|
||||
noData: 'No Results',
|
||||
placeholder: 'Search'
|
||||
}
|
||||
themeable: {
|
||||
readyTransition: true,
|
||||
responsiveTable: true
|
||||
}
|
||||
plugins: [
|
||||
// Restores initial <title>
|
||||
function persistTitle(hook, vm) {
|
||||
var titleElm = document.querySelector('title');
|
||||
var rootTitle = titleElm && titleElm.textContent;
|
||||
var pageTitlePrefix = window.$docsify.name ? window.$docsify.name + ' - ' : '';
|
||||
|
||||
if (rootTitle) {
|
||||
hook.doneEach(function () {
|
||||
var currentTitle = titleElm.textContent;
|
||||
var isRoot = !/\/[a-z]/.test(location.hash);
|
||||
var newTitle = isRoot ? rootTitle : pageTitlePrefix + currentTitle;
|
||||
|
||||
titleElm.textContent = newTitle;
|
||||
});
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
</script>
|
||||
<script src="assets/js/main.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify-copy-code@2/dist/docsify-copy-code.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify-pagination@2/dist/docsify-pagination.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/external-script.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
21
license.md
Normal file
21
license.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2025 The LUX
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
2
page.md
Normal file
2
page.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
## The LUX 2
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue