forked from UMAnime/UMAnime.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
102 lines (82 loc) · 3.66 KB
/
test.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Tommy Wu, Mark Otto, Jacob Thornton, and Bootstrap contributors">
<link rel="shortcut icon" type="image/x-icon" href="./assets/favicon.png">
<title>test - UMAnime</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.1/examples/cover/">
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/sakura.css">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="./css/cover.css" rel="stylesheet">
<!-- Load Markdown and insert -->
<script src="https://unpkg.com/[email protected]/dist/commonmark.js"></script>
<script>
fetch('markdown/test.md')
.then((resp) => resp.text())
.then((resp) => {
var result = new commonmark.HtmlRenderer().render(new commonmark.Parser().parse(resp)); // result is a String
document.getElementById("main").innerHTML = result;
});
</script>
</head>
<body class="d-flex text-white bg-dark" style="flex-direction: column;">
<!-- <script src="./js/sakura.js" text="text/javascript"></script>
<script>
const sakura = new Sakura('body');
</script> -->
<div class="cover-container d-flex w-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div class="header-responsive">
<a href="index.html" class="navlogo navbar-brand float-md-start mb-0" style="color: white;">
<img class="img-nav d-inline-block align-middle" src="./assets/favicon.png">
<h3 style="margin-bottom: 0;">UMAnime</h3>
</a>
<nav class="nav nav-masthead justify-content-center float-md-end">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
<a class="nav-link" href="events.html">Events</a>
<a class="nav-link" href="membership.html"> Membership</a>
</nav>
</div>
</header>
<div class="padding-inbetween"></div>
<div id="main"></div>
<div class="padding-bottom"></div>
<footer class="mt-auto text-white-50">
<p>You can find us on following platforms<br></p>
<div class="links footer-div">
<div>
<a target="_blank" href="https://discord.gg/G52Wn6a"><img src="assets/UMAnime_discord.png" class="footer-img"
alt="Discord Logo"></a>
<a target="_blank" href="https://www.facebook.com/groups/umanime/"><img src="assets/UMAnime_fb.png"
class="footer-img" alt="Facebook Logo"></a>
</div>
<div>
<a target="_blank" href="https://www.instagram.com/UMAnimeClub/"><img src="assets/UMAnime_Instagram.png"
class="footer-img" alt="Instagram Logo"></a>
<a target="_blank" href="https://twitter.com/UmanimeC/"><img src="assets/UMAnime_twitter.png" class="footer-img"
alt="Twitter Logo"></a>
</div>
</div>
</footer>
</div>
</body>
</html>