-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (54 loc) · 1.97 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Livl Shell - Documentation</title>
<link rel="shortcut icon" type="image/x-icon"
href="./img/livl_shell_logo.ico?">
<script src="https://cdn.tailwindcss.com"></script>
<style type="text/tailwindcss">
@layer components {
code {
@apply bg-gray-100 text-gray-800 p-1 rounded text-sm font-mono;
}
.card {
@apply p-6 rounded-md border border-slate-200 hover:bg-slate-100 hover:border-slate-300 transition lg:max-w-72 flex flex-col gap-3 text-3xl text-slate-700 hover:text-slate-900;
}
.badge {
@apply inline p-1 px-2 rounded text-white w-fit text-sm;
}
h1 {
@apply text-4xl font-medium;
}
p {
@apply text-slate-600;
}
}
</style>
</head>
<body class="p-10 container mx-auto flex flex-col gap-12">
<div class="flex flex-col gap-4">
<img src="./img/livl_shell_logo.png"
class="w-52 rounded" />
<h1 class="mt-4">
Livl Shell documentation
</h1>
<p class="text-lg">
Livl Shell is an intermediate reimplementation of the bash shell in C language.
</p>
</div>
<div class="flex gap-2 max-lg:flex-col items-stretch">
<a href="https://livl-corporation.github.io/livl-shell/doc/html/" class="card">
<span class="badge bg-blue-500">DOXYGEN</span>
Visit the Doxygen documentation
</a>
<a href="https://livl-corporation.github.io/livl-shell/gcov/report/" class="card">
<span class="badge bg-green-500">GCOV</span>
Visit the GCOV coverage report
</a>
</div>
<a href="https://github.com/Livl-Corporation/livl-shell"
class="text-lg text-blue-600 hover:text-blue-500">GitHub</a>
</body>
</html>