forked from PureDarwin/puredarwin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
status.html
124 lines (110 loc) · 5.53 KB
/
status.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PureDarwin | Status</title>
<meta property="og:title" content="Welcome to PureDarwin" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Moving the Darwin community in the right direction!" />
<meta property="og:description" content="Moving the Darwin community in the right direction!" />
<link rel="canonical" href="https://www.puredarwin.org/" />
<meta property="og:url" content="https://www.puredarwin.org/" />
<meta property="og:site_name" content="PureDarwin" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Welcome to PureDarwin" />
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
<link rel="icon" type="image/png" href="./favicon.png">
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"></script>
</head>
<body style="background: #F6F6F6;">
<nav class="navbar navbar-dark navbar-expand-lg fixed-top bg-black">
<div class="container">
<a class="navbar-brand" href="/">
<img src="img/homepage/logo-mark-text-fff.svg" alt="PureDarwin" height="30px" class="pb-1">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<span class="me-auto"></span>
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/wiki#/about/_About">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#beta">Download</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/wiki">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="status.html">Status</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/wiki#/about/_About?id=frequently-asked-questions">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/pureDarwin/" target="_blank">GitHub</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-11 mt-5 pt-5">
<div id="content">You must have jquery enabled to view this page.</div>
</div>
</div>
</div>
<div style="height:20vh"></div>
<footer class="py-4" style="background-color: #E5E4E4;">
<div class="container">
<div class="row p-4">
<div class="col-12 col-lg-6 text-center text-lg-start">
<img src="img/homepage/logo-mark-text-1B1B1B.svg" height="30px">
<br>
<br>
</div>
<div class="col-12 col-lg-6">
<div class="text-center text-lg-end text-black">
© 2024 Copyright PureDarwin / PD-Devs. All rights reserved.
<br>
<small>
<ul class="mt-2 text-right">
<li><a href="/wiki#/?id=credits" class="text-black">Project Credits</a></li>
<li>ysUI Icons are licensed under MIT License</li>
<li><a href="http://www.hexley.com/" class="text-black" target="_blank">Hexley DarwinOS
Mascot</a> Copyright 2000 by Jon Hooper.</li>
<li>Site Theme by <a href="https://github.com/kevdoy" target="_blank"
class="text-black">@KevDoy</a> on <a
href="https://github.com/PureDarwin/puredarwin.github.io" class="text-black"
target="_blank">GitHub</a></li>
</ul>
</small>
</div>
</div>
</div>
</div>
</footer>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
var conv = new showdown.Converter();
$.get("./md/status.md", function (data) {
document.getElementById('content').innerHTML = conv.makeHtml(data);
console.log(conv.makeHtml(data));
});
</script>
</body>
</html>