-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
90 lines (89 loc) · 5.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Flipper Aquarium</title>
<meta name="description" content="Flipper Aquarium"/>
<meta property="og:url" content="https://flipper-aquarium.github.io"/>
<meta property="og:title" content="Flipper Aquarium"/>
<meta property="og:description" content="Flipper Aquarium"/>
<meta property="og:type" content="website"/>
<!--<meta property="og:image" content="https://raw.githubusercontent.com/.../main-2500-2.jpg"/>-->
<link rel="canonical" href="https://flipper-aquarium.github.io">
<!--<link rel="shortcut icon" href="https://raw.githubusercontent.com/.../Frame_15.ico" type="image/x-icon"/>-->
<!--<link rel="apple-touch-icon" href="https://raw.githubusercontent.com/.../apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="https://raw.githubusercontent.com/.../apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="https://raw.githubusercontent.com/.../apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="https://raw.githubusercontent.com/.../apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="https://raw.githubusercontent.com/.../apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="https://raw.githubusercontent.com/.../apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="https://raw.githubusercontent.com/.../apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="https://raw.githubusercontent.com/.../apple-touch-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="https://raw.githubusercontent.com/.../apple-touch-icon-180x180.png" />-->
<!--
<link rel="apple-touch-icon" href="https://raw.githubusercontent.com/.../qFlipper_iOS_152px.PNG">
<link rel="apple-touch-icon" sizes="76x76" href="https://raw.githubusercontent.com/.../qFlipper_iOS_152px.PNG">
<link rel="apple-touch-icon" sizes="152x152" href="https://raw.githubusercontent.com/.../qFlipper_iOS_152px.PNG">
<link rel="apple-touch-startup-image" href="https://raw.githubusercontent.com/.../qFlipper_iOS_152px.PNG">
-->
<!--
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-TileImage" content="https://raw.githubusercontent.com/.../qFlipper_iOS_512px.png">
<meta charset="utf-8">
-->
<!--
<meta charset="utf-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/masonry.pkgd.min.js"></script>
<!--<script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body class="d-flex flex-column min-vh-100" style="background-color: #dbcae1!important;">
<nav id="navBar" class="navbar sticky-top navbar-expand-lg navbar-light bg-light" style="background-color: #c865ed!important;">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="https://raw.githubusercontent.com/flipper-aquarium/flipper-aquarium.github.io/main/logo.png" alt="" width="25" height="25" class="d-inline-block align-text-top">
<span class="text-white">Flipper Aquarium</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active text-white" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://github.com/flipper-aquarium/flipper-aquarium.github.io" target="_blank">GitHub</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="topBar" class="container-fluid p-2 bg-primary text-white text-center" style="background-color: #ae1ae5!important;">
<h1>Flipper Aquarium</h1>
<h4>TAG LINE</h4>
<div>SUB TAG LINE
</div>
</div>
<div id="cardsAll" class="container-fluid mt-5 px-5">
<div id="cardsAllRow" class="row row-cols-1 row-cols-md-2 g-4">
</div>
</div>
<br />
<div class="modal fade" id="generateModal" tabindex="-1" aria-labelledby="generateModalLabel" aria-hidden="true"></div>
<footer id="footerBar" class="footer mt-auto py-3 bg-light" style="background-color: #c865ed!important;">
<div class="container">
<span class="text-white" id="flipperaquarium_version">Flipper Aquarium</span>
</div>
</footer>
</body>
<!--
<script src="general_page.js"></script>
-->
<script src="index.js"></script>
</html>