-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.73 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
<!DOCTYPE html>
<html>
<!-- TODO: Make the bg different than the normal codeblocks -->
<head>
<title>About Blaze Sudios! 🦊</title>
<meta name="description" content="This page is about Blaze Sudios!"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://tsunami014.github.io/bg/make_bg.js" type="module"></script>
<link rel="stylesheet" href="https://tsunami014.github.io/bg/bg.css">
<link rel="stylesheet" href="https://tsunami014.github.io/style.css">
<script src="https://cdn.jsdelivr.net/npm/markdown-it@14.1.0/dist/markdown-it.min.js"></script>
<style>
#MarkdownGoesHere p {
display: flex;
flex-direction: row;
justify-content: center;
}
#MarkdownGoesHere p * {
padding-left: 2px;
padding-right: 2px;
}
</style>
</head>
<body>
<div id="inside" style="overflow-x: hidden">
<div class="row">
<a href="https://tsunami014.github.io"><img src="https://badgen.net/badge/-/Go%20home?label=&icon=telegram&color=orange"></img></a>
<br>
<a href="https://github.com/Tsunami014/Blaze-Sudio/"><img src="https://badgen.net/badge/-/Go%20to%20github%20page?label=&icon=github"></img></a>
</div>
<div id="MarkdownGoesHere"></div>
<script>
const md = markdownit();
fetch('README.md')
.then(response => response.text())
.then((data) => {
const result = md.render(data);
document.getElementById("MarkdownGoesHere").innerHTML = result;
})
</script>
</div>
</body>
</html>