forked from lab-brussels-1/loruki-group-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.html
More file actions
154 lines (146 loc) · 4.81 KB
/
Copy pathdoc.html
File metadata and controls
154 lines (146 loc) · 4.81 KB
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
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./styles/utilities.css" />
<link rel="stylesheet" href="./styles/something.css" />
<title>Loruki | Cloud Hosting For Everyone</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container flex">
<h1 class="logo">Loruki-Group1</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="doc.html">Docs</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</nav>
</div>
</div>
<!-- Head carsiti-->
<section class="docs-head bg-primary py-3">
<div class="container grid">
<div>
<h1 class="xl">Docs</h1>
<p class="lead">Learn how to work with the Loruki platform</p>
</div>
<img src="images/docs.png" alt="" />
</div>
</section>
<!-- Docs main -->
<section class="docs-main my-4">
<div class="container grid">
<div class="card bg-light p-3">
<h3 class="my-2">Essentials</h3>
<nav>
<ul>
<li><a class="text-primary" href="#">Introduction</a></li>
<li><a href="#">About Loruki</a></li>
<li><a href="#">Installation</a></li>
</ul>
</nav>
<h3 class="my-2">Deployment</h3>
<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 and downgrade</a></li>
</ul>
</nav>
</div>
<div class="card">
<h2>Introduction</h2>
<p>
The ipsum itself is important to the main adipisicing elite. What is
the difference between making those enduring tasks? Whence do you
encounter some of the same pains that are accepted by those who
admire the whole world as much as it wants their labors, but
especially less?
</p>
<div class="alert alert-success">
<i class="fas fa-info"></i> Lorem ipsum dolor sit amet consectetur
adipisicing elit. Quae, animi?
</div>
<h3>Lorem, ipsum dolor.</h3>
<p>
The ipsum itself is pain, it loves the main adipisicing process.
Little does she want the whole of her great life, and the truth!
But, indeed, further on.
</p>
<a href="#" class="btn btn-primary">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 minju -->
<footer class="footer bg-dark py-5">
<div class="container grid grid-3">
<div>
<h1>Loruki-Group1</h1>
<p>Copyright © 2022</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="doc.html">Docs</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</nav>
<div class="social">
<a
aria-label="github"
class="icon"
href="https://github.com/lab-brussels-1/loruki-group-1"
>
<i class="fab fa-github fa-2x"></i>
</a>
<a
aria-label="instagram"
class="icon"
href="https://www.instagram.com/"
>
<i class="fab fa-instagram fa-2x"></i>
</a>
<a
aria-label="twitter"
class="icon"
href="https://twitter.com/home?lang=en"
>
<i class="fab fa-twitter fa-2x"></i>
</a>
<a
aria-label="facebook"
class="icon"
href="https://www.facebook.com/"
>
<i class="fab fa-facebook fa-2x"></i>
</a>
</div>
</div>
</footer>
</body>
</html>