-
Notifications
You must be signed in to change notification settings - Fork 6
/
footer.html
54 lines (52 loc) · 2.13 KB
/
footer.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
<!DOCTYPE html>
<!--
Slate by Pixelarity
pixelarity.com | hello@pixelarity.com
License: pixelarity.com/license
-->
<html>
<head>
<title>Texas ACM</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta name="robots" content="index, follow">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css">
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<noscript><link rel="stylesheet" href="assets/css/noscript.css"></noscript>
<link rel="stylesheet" type="text/css" href="assets/css/tooltip.css">
<!-- FontAwesome v5 -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/v4-shims.css">
</head>
<body id="footer">
<div name="!body">
<!-- Footer -->
<footer id="footer">
<div class="inner">
<p class="copyright">© Association for Computing Machinery at the University of Texas at Austin
<script type="text/javascript">
var today = new Date()
var year = today.getFullYear()
document.write(year)
</script>
</p>
<div class="largeFontAwesome">
<a href="https://www.facebook.com/groups/texas.acm" class="fab fa-facebook-f" target="_blank"></a>
<a href="https://twitter.com/utexasACM" class="fab fa-twitter" target="_blank"></a>
<a href="https://discord.gg/tspJCpFFKx" class="fab fa-discord" target="_blank"></a>
</div>
</div>
</footer>
<script type="text/javascript">
var url = window.location.href;
var queryString = url.substring(url.indexOf('?') + 1 );
console.log(queryString);
document.getElementById(queryString).className = "active";
</script>
</div>
</html>