Update docs
This commit is contained in:
parent
6c7578f79c
commit
1df5409452
|
@ -1,4 +1,4 @@
|
||||||
- [Home](/)
|
- [Home](home.md)
|
||||||
|
|
||||||
- [Layouts](layouts/layout.md)
|
- [Layouts](layouts/layout.md)
|
||||||
|
|
||||||
|
|
|
@ -23,3 +23,12 @@ local beautiful = require("beautiful")
|
||||||
beautiful.init("some_theme.lua")
|
beautiful.init("some_theme.lua")
|
||||||
local bling = require("bling")
|
local bling = require("bling")
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Contributors
|
||||||
|
A special thanks to all our contributors...
|
||||||
|
|
||||||
|
<a href="https://github.com/Nooo37/bling/graphs/contributors">
|
||||||
|
<img src="https://contrib.rocks/image?repo=Nooo37/bling" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
Made with [contributors-img](https://contrib.rocks).
|
|
@ -1,25 +1,27 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Document</title>
|
<title>Bling Docs</title>
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||||
<meta name="description" content="Description">
|
<meta name="description" content="Description">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||||
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
|
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<script>
|
<script>
|
||||||
window.$docsify = {
|
window.$docsify = {
|
||||||
name: 'bling',
|
name: 'bling',
|
||||||
|
nameLink: '/',
|
||||||
repo: 'https://github.com/Nooo37/bling',
|
repo: 'https://github.com/Nooo37/bling',
|
||||||
loadSidebar: true,
|
loadSidebar: true,
|
||||||
subMaxLevel: 3
|
subMaxLevel: 3,
|
||||||
|
homepage: 'home.md'
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<!-- Docsify v4 -->
|
<!-- Docsify v4 -->
|
||||||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
||||||
<script src="//unpkg.com/prismjs/components/prism-lua.js"></script>
|
<script src="//unpkg.com/prismjs/components/prism-lua.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue