This repository was archived by the owner on May 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
58 lines (56 loc) · 2.69 KB
/
footer.html
File metadata and controls
58 lines (56 loc) · 2.69 KB
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
<!-- Universal Footer for all BananiumLabs pages. Created and maintained by Ben Cuan -->
<footer class="page-footer blue accent-3">
<div class="container center-align">
<div class="row justify-content-md-center">
<div class="col s12 m12 l4">
<h5 class="white-text">Support Us!</h5>
<ul>
<li>
Help us continue developing amazing apps and products!
</li>
<li>
<div class="row">
<a style="margin-top: 2vh" class="waves-effect waves-light btn black" href="javascript:alert('Thank you! But this feature is not yet implemented. Please use one of the contact method for now!')">Donate</a>
<div id="donateComponent" style="display: inline-block"></div>
</div>
<div id="donateMessage"></div>
</li>
<script>
$(document).ready(function (e) {
$('#donateComponent').load('../donateCPU.html');
});
</script>
</ul>
</div>
<div id="discord" class="col s12 m12 l4">
<h5 class="white-text">Join Our Chat</h5>
<ul>
<li>
We have a public Discord chat!
</li>
<li>
<a style="margin-top: 2vh" class="waves-effect waves-light btn black" href="https://discord.gg/7rquDqS">Join here</a>
</li>
</ul>
</div>
<div id="altContact" class="col s12 m12 l4">
<h5 class="white-text">Contact Us!</h5>
<ul>
<li>
Here are some contact methods!
</li>
<li>
<a style="margin-top: 2vh" class="waves-effect waves-light btn black" href="mailto:2tbs@bananiumlabs.com">Email</a>
<!--<a style="margin-top: 2vh" class="waves-effect waves-light btn black" href="#">Unused :)</a>-->
</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright blue accent-4">
<div class="container">
© 2017-2018 Two Terabyte Studios. Designed by Ben Cuan on behalf of <a href="https://bananiumlabs.com" class="white-text">Bananium Labs</a>
<a class="grey-text text-lighten-4 right" href="https://github.com/BananiumLabs/BananiumSite/blob/master/LICENSE">MIT License</a>
</div>
</div>
</footer>