-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.html
117 lines (105 loc) · 4.27 KB
/
docs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V" crossorigin="anonymous" />
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<!-- style -->
<link rel="stylesheet" href="css/docs-style.css">
<title>Loruki | Docs</title>
</head>
<body>
<header class="bg-primary">
<div class="container">
<h3 class="title">Loruki.</h3>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="docs.html">Docs</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero bg-primary">
<div class="container">
<div class="hero__description">
<h2 class="hero__title title">Docs</h2>
<p>
Learn how to work with the Loruki platform
</p>
</div>
<div class="hero__image">
<img src="images/docs.png" alt="">
</div>
</div>
</section>
<section class="documentation">
<div class="container">
<div class="documentation__links shadow">
<h3 class="subtitle">Essentials</h3>
<a href=""><span>Introduction</span></a>
<a href="">About Loruki</a>
<a href="">Instalation</a>
<h3 class="subtitle">Deployment</h3>
<a href="">Setting up a container</a>
<a href="">Using the CLI</a>
<a href="">Managing resources</a>
<a href="">Upgrade & downgrade</a>
</div>
<div class="documentation__introduction shadow">
<h3 class="introduction-title title">Introduction</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Distinctio illo facere perferendis laborum? Similique
recusandae incidunt eos dolorum aliquam ipsam unde perspiciatis
laudantium totam quam laborum velit, at maxime minus?
</p>
<li> Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae, animi?</li>
<h3 class="subtitle">Introduction</h3>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Minima totam magni eius vitae velit id, atque veritatis! At,
vero porro.
</p>
<button class="btn btn-primary"><a href="">Install CLI</a></button>
<h3 class="subtitle">Requirements</h3>
<p>Windows 10, Mac OSX, Linux</p>
<p>Node.js v12 or higher</p>
<h3 class="subtitle">Instal</h3>
<p>Mac (Homebrew)</p>
<code>$ brew install loruki-cli</code>
<p>NPM</p>
<code>$ npm install loruki-cli</code>
<p>Yarn</p>
<code>$ yarn install loruki-cli</code>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="copyright">
<h3 class="title">Loruki</h3>
<p>Copyright © 2020</p>
</div>
<div class="links">
<a href="">Home</a>
<a href="">Features</a>
<a href="">Docs</a>
</div>
<div class="social-media">
<a href=""><i class="fab fa-github"></i></a>
<a href=""><i class="fab fa-facebook"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
<a href=""><i class="fab fa-twitter"></i></a>
</div>
</div>
</footer>
</body>
</html>