-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (59 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<link rel="icon" type="image/x-icon" href="/favicon.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Explore curling stats from throughout the seasons!">
<link rel="stylesheet" href="style.css">
<meta name="google-site-verification" content="Zf_5J5gfegJ7njKmsp_OnOW2I2IMZfNFHo1-NNXicHY" />
<title>BroomStack</title>
</head>
<body>
<div id="nav-placeholder">
</div>
<article id="siteContent">
<h2 style="text-align: center; padding-top: 20px; font-weight: normal;">Welcome to BroomStack!</h2>
<h3 style="text-align: center; font-weight: normal;">Curling Stats for Curling Nerds</h3>
<div class="homePageLinks">
<div class="homePageContainer" style="background-color: #f2f2f2;">
<a href="/seasonRanks/seasonRanks.html"><h2 style="font-weight: normal; text-decoration: none; color:black;">SeasonRanks</h2></a>
<h3 style="font-weight: normal">View and filter through curling stats throughout the seasons!</h3>
</div>
<div class="homePageContainer" style="background-color: #f2f2f2;">
<a href="/Teams/teams.html"><h2 style="font-weight: normal; text-decoration: none; color:black;">Teams</h2></a>
<h3 style="font-weight: normal">View a teams stats throughout the years!</h3>
</div>
<div class="homePageContainer" style="background-color: #f2f2f2;">
<h2 style="font-weight: normal">Follow Us!</h2>
<h3 style="font-weight: normal">Follow BroomStack on X and star us on GitHub!</h3>
<h2>
<a href="https://x.com/Broomstack"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://github.com/Kaktoose/BroomStack"><i class="fa-brands fa-github"></i></a>
</h2>
</div>
</div>
<div class="releaseNotes">
<h3>Release Notes</h3>
<h4>V1.3.0:<br>Events Page (Beta)</h4>
<h4>V1.2.0:<br>Raw Data added</h4>
<h4>V1.1.0:<br>New Events Page!<br>Event previews will be made available as the event approaches.</h4>
<h4>V1.0.1:<br>Added a home page!</h4>
</div>
</article>
<script src="https://kit.fontawesome.com/30f798ba96.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
<script>
$(function(){
$("#nav-placeholder").load("../nav.html");
});
</script>
<script>
$(function(){
$("#footer-placeholder").load("../footer.html");
});
</script>
<div id="footer-placeholder"></div>
</body>
</html>