-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
76 lines (72 loc) · 3.53 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Overpass:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grandstander&display=swap" rel="stylesheet">
<title>Rollerskate Spots Australia</title>
<div class="logo">
<p><a href="index.html">Rollerskate Spots Australia</a></p>
</div>
<div id="nav-placeholder"></div>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$.get("homeNav.html", function(data){
$("#nav-placeholder").replaceWith(data);
document.getElementById("about").className = "active";
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-178249401-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-178249401-1');
</script>
</head>
<body>
<div id="page">
<div id="aboutPage">
<h1>About</h1>
<p>
<i>Rollerskate Spots Australia</i> was created out of the need for finding rollerskate (and rollerblade)
friendly skate spots! Finding those sweet level-ground, smooth surface spots in our neighbourhoods can
be a struggle, especially if you don't know where to look.
</p>
<div id="skateBackground">
<img id="aboutSkateImage" src="mainImages/fairy_skates.jpg" alt="Pink Impala Skates">
</div>
<br>
<h2>Acknowledgement of Traditional Owners</h2>
<p>
We acknowledge the Traditional Owners of the land on which we skate and pay respect to Elders past and present.
This website was built on Yuggera land.
<br>
Throughout this site you will find the locations of skate spots listed with what Indigenous land they are on.
This information is sourced through the use of a few maps, one being the
<a target="_blank" href="https://aiatsis.gov.au/explore/articles/aiatsis-map-indigenous-australia">AIATSIS map of Indigenous Australia</a>.
We implore skaters to learn what land they skate upon and seek to understand the
<a target="_blank" href="https://australianstogether.org.au/discover/indigenous-culture/the-importance-of-land/">importance of land to Indigenous Australians</a>.
</p>
<h2>What is verification?</h2>
<p>
As much as we would love to be able to skate across Australia and verify that all
locations submitted are as great as they seem, we unfortunately cannot. We rely on
community verification to determine that skate spots submitted to us are truly located
where they are said to be and that they are safe.
</p>
</div>
</div>
</body>
<footer>
<div id="footer-placeholder"></div>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$.get("footer.html", function(data){
$("#footer-placeholder").replaceWith(data);
});
</script>
</footer>
</html>