-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.96 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DarkDash</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--
GitLab DarkDash by
_____ _
/ ____| | |
| (___ _ __ __ _ ___ ___| | ___ _ __ ___ _ __ ___
\___ \| '_ \ / _` |/ __|/ _ \ | / _ \ '_ \ / _ \| '__/ _ \
____) | |_) | (_| | (__| __/ |____| __/ | | | (_) | | | __/
|_____/| .__/ \__,_|\___|\___|______|\___|_| |_|\___/|_| \___|
| |
|_|
Get this at:
https://github.com/SpaceLenore/gitlab-darkdash
@SpaceLenore
2018-11-03
-->
<div class="wrap">
<div class="priolists">
<div class="content critical-b">
<h1 class="critical-h">Critical</h1>
<hr>
<div class="list" id="critical"></div>
</div>
<div class="content high-b">
<h1 class="high-h">High</h1>
<hr>
<div class="list" id="high"></div>
</div>
<div class="content medium-b">
<h1 class="medium-h">Medium</h1>
<hr>
<div class="list" id="medium"></div>
</div>
<div class="content low-b">
<h1 class="low-h">Low</h1>
<hr>
<div class="list" id="low"></div>
</div>
</div>
<div class="bottom">
<h3>
Made by <a href="https://github.com/SpaceLenore">@SpaceLenore</a>
</h3>
</div>
</div>
<script src="js/config.js" charset="utf-8"></script>
<script src="js/main.js" charset="utf-8"></script>
</body>
</html>