1<!DOCTYPE html>
2<html lang="en">
3 <!--
4 ___ _____ _
5 / _ \ _ _|_ _|_ _| | _____
6 | | | | '_ \| |/ _` | |/ / _ \
7 | |_| | | | | | (_| | < __/
8 \___/|_| |_|_|\__,_|_|\_\___|
9
10 Copyright 2021 Louis Dalibard
11 -->
12
13 <head>
14 <!-- Stylesheet-->
15 <link rel="stylesheet" type="text/css" href="style.css" />
16 <!-- Title Element-->
17 <title>Debug Info</title>
18 <!-- Icon-->
19 <link rel="icon" type="image/webp" href="assets/icons/icon.webp" />
20 <!-- Main Script Handling All Effects-->
21 <!-- Script for all pages-->
22 <!-- Metadata-->
23 <meta property="og:type" content="website" />
24 <meta property="og:url" content="https://ontake.dev/" />
25 <meta property="og:title" content="Debug Info" />
26 <!-- JQuery -->
27 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
28 </head>
29
30 <body>
31 <div id="container">
32 <div class="flex-container-title">雪一 Server Debug Info</div>
33 <div id="flex-container">
34 <div class="module" id="dns-records-module">
35 <div class="module-title">ASCII Banner</div>
36 <div class="module-text" id="ascii-banner-text"></div>
37 </div>
38 <div class="module" id="server-system-info-module">
39 <div class="module-title">Server System Info</div>
40 <div class="module-text" id="server-system-info-text"></div>
41 </div>
42 </div>
43 <div id="home-link">
44 <a id="home-link-a" href="https://ontake.dev/"
45 ><img id="home-icon" src="assets/icons/home.webp"
46 /></a>
47 </div>
48 </div>
49 <script src="main.js"></script>
50 </body>
51</html>