-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.html
153 lines (146 loc) · 5.54 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!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" />
<script
src="https://kit.fontawesome.com/3ca0c365cd.js"
crossorigin="anonymous"
></script>
<title>Loruki | Cloud Hosting For Everyone</title>
<link rel="stylesheet" href="./Main css/normalize.css" />
<link rel="stylesheet" href="./Main css/main.css" />
<link rel="stylesheet" href="./CSS/style.css" />
</head>
<body>
<!--
================================================================================================================================
Navbar
================================================================================================================================
-->
<nav class="navbar bg-primary">
<div class="container-7">
<div class="flex">
<a href="index.html"><h1 class="top-2">Loruki</h1></a>
<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>
</div>
</div>
</nav>
<!--
================================================================================================================================
Docs
================================================================================================================================
-->
<section class="docs bg-primary py-4">
<div class="container-1 grid">
<div class="docs-text">
<h1 class="xl">Docs</h1>
<p>Learn how to work with the Loruki platform</p>
</div>
<img
src="/images/docs.png"
alt="An image with a document logo"
class="img"
/>
</div>
</section>
<!--
================================================================================================================================
Info
================================================================================================================================
-->
<section class="info my-2 py-2">
<div class="container-3 grid">
<div class="links card">
<h2>Essentials</h2>
<nav>
<ul>
<li><a href="#">Introduction</a></li>
<li><a href="#">About Loruki</a></li>
<li><a href="#">Installation</a></li>
</ul>
</nav>
<h2>Deployment</h2>
<nav>
<ul>
<li><a href="#">Setting up a container</a></li>
<li><a href="#">Using the CLI</a></li>
<li><a href="#">Managing resources</a></li>
<li><a href="#">Upgrade & downgrade</a></li>
</ul>
</nav>
</div>
<div class="card">
<h2>Introduction</h2>
<p class="p-no-width">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit, similique! Nobis sit, eveniet asperiores perferendis
a ea quidem consequuntur velit.
</p>
<div class="alert alert-success">
<i class="fa-solid fa-check"></i> Lorem ipsum dolor sit amet
consectetur adipisicing elit. Quae, animi?
</div>
<h3>Lorem, ipsum dolor.</h3>
<p class="p-no-width">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam in
modi autem quisquam aut nam.
</p>
<a href="#" class="btn btn-thin btn-dark">Install CLI</a>
<h3>Requirements</h3>
<ul>
<li>Windows 10, Mac OSX, Linux</li>
<li>Node.js v12 or higher</li>
</ul>
<h3>Install</h3>
<p>Mac (Homebrew)</p>
<pre><code>$ brew install loruki-cli</code></pre>
<p>NPM</p>
<pre><code>$ npm install loruki-cli</code></pre>
<p>Yarn</p>
<pre><code>$ yarn install loruki-cli</code></pre>
</div>
</div>
</section>
<!--
================================================================================================================================
Footer
================================================================================================================================
-->
<footer class="footer bg-dark">
<div class="container-1 grid grid-3">
<div>
<a href="index.html"><h1 class="top">Loruki</h1></a>
<p>Copyright © 2020</p>
</div>
<div class="quick-links">
<h2 class="top">Quick links</h2>
<a href="index.html">Home</a>
<a href="features.html">Features</a>
<a href="docs.html">Docs</a>
</div>
<div class="social-media flex">
<a href="https://github.com/isaac-gie" target="blank"
><i class="fa-brands fa-github fa-2x"></i
></a>
<a
href="https://www.linkedin.com/in/gitonga-isaac-699592235/"
target="blank"
><i class="fa-brands fa-linkedin fa-2x"></i>
</a>
<a href="https://www.instagram.com/gie_kay_/" target="blank"
><i class="fa-brands fa-instagram fa-2x"></i>
</a>
<a href="https://twitter.com/_gitonga_isaac" target="blank"
><i class="fa-brands fa-twitter fa-2x"></i>
</a>
</div>
</div>
</footer>
</body>
</html>