master
iotcat 5 years ago
parent 1b64b2e127
commit 3900393d92
  1. BIN
      docs/.img/network-topology.png
  2. 1
      docs/.nojekyll
  3. 44
      docs/README.md
  4. 47
      docs/config.js
  5. 35
      docs/index.html
  6. 80
      docs/landing.html

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

@ -0,0 +1,44 @@
# Sola Proj
Sola的意思是天空,被太阳照射的地方。祝愿Sola Proj能够成为梦想与希望的起源之地。
## 重要网址
**主页**
[https://home.yimian.xyz](https://home.yimian.xyz)
**FTP家庭网盘**
[ftps://home.yimian.xyz:2121](ftps://home.yimian.xyz:2121)
**项目博客**
[https://www.eee.dog/tech/smart-home.html](https://www.eee.dog/tech/smart-home.html)
## 系统组成
### 基本组成
````
|
|---网络组件
| |---主路由器
| |---辅路由器
| |---LoRa网关
|
|
|---计算单元
| |---单片机节点
| |---IBM服务器
| |---云服务器
|
|
|---公共终端
| |---天猫精灵
| |---MING's笔记本
| |---XIUJU's笔记本
| |---MING's IPhone
| |---XIUJU's IPhone
|
````

@ -0,0 +1,47 @@
const langs = [
{ title: '简体中文', path: '/home', matchPath: /^\/(home|ecosystem|support)/ },
];
docute.init({
landing: 'landing.html',
title: 'Sola Proj',
repo: 'iotcat/sola',
twitter: 'iotcat',
'edit-link': 'https://github.com/IoTcat/sola/blob/master/docs/',
nav: {
default: [
{
title: '首页', path: '/en/'
}
],
},
plugins: [
docsearch({
apiKey: '46a8ba306e368972c1d75feb581fb430',
indexName: 'wiot',
tags: ['english', 'zh-Hans'],
url: 'http://wiot.eee.dog'
}),
evanyou()
]
});
function loadScript (src, callback) {
let s,
r,
t;
r = false;
s = document.createElement('script');
s.type = 'text/javascript';
s.src = src;
s.onload = s.onreadystatechange = function () {
// console.log( this.readyState ); //uncomment this line to see which ready states are called.
if (!r && (!this.readyState || this.readyState == 'complete'))
{
r = true;
callback();
}
};
t = document.getElementsByTagName('script')[0];
t.parentNode.insertBefore(s, t);
}

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<title>Sola Proj 说明文档</title>
<link rel="stylesheet" href="https://cdn.yimian.xyz/docute/docute.css">
<link rel="stylesheet" href="https://cdn.yimian.xyz/docute/theme-github.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<style>
body {
text-rendering: auto;
}
#evanyou-canvas {
z-index: -1 !important;
}
.dplayer-wrap {
max-width: 700px;
margin: 20px 0;
}
</style>
</head>
<body>
<!-- don't remove this part start -->
<div id="app"></div>
<script src="https://cdn.yimian.xyz/docute/docsearch.js"></script>
<script src="https://cdn.yimian.xyz/docute/evanyou.min.js"></script>
<script src="https://cdn.yimian.xyz/docute/docute.js"></script>
<script src="./config.js"></script>
<!-- livereload script placeholder -->
<!-- don't remove this part end -->
</body>
</html>

@ -0,0 +1,80 @@
<h1>Sola</h1>
<br/><br/>
<h3>智慧家庭,梦想开始的地方.</h3>
<div class="landing-buttons">
<a class="landing-button" target="_blank" href="https://github.com/iotcat/sola">
GitHub
</a>
<a class="landing-button" router-link="/home">
Docs
</a>
</div>
<style>
h1 {
margin: 0;
margin-top: -50px;
font-weight: normal;
font-size: 40px;
letter-spacing: 1px;
}
h3 {
margin-top: 20px;
color: #999;
font-weight: normal;
letter-spacing: 1px;
}
.landing {
padding: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 100%;
-webkit-user-select: none;
user-select: none;
}
.features {
margin-top: 20px;
margin-bottom: 10px;
font-size: 16px;
line-height: 1.7;
}
.landing-button {
border: 1px solid #ccc;
border-radius: 33px;
padding: 10px 30px;
background-color: white;
display: inline-block;
margin-right: 20px;
color: #333;
}
.landing-button:hover {
border-color: #42b983;
color: #42b983;
text-decoration: none;
}
.dplayer-wrap {
max-width: 600px;
margin: 20px 0 40px;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
</style>
Loading…
Cancel
Save