-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathalumni.html
99 lines (82 loc) · 5.31 KB
/
alumni.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
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div id="nav"></div>
<div class="content">
<div id="pageInfo" data-title="Gamma Pi Alumni Information">
<div id = "picture-header2"></div>
</div>
<div class="w3-container w3-padding-32 w3-center" id="darts" style="background-color: #DFDFDF; border-top: 2px solid #09268a; border-bottom: 2px solid #09268a;">
<div class="dart-bgrid">
<button class="w3-button w3-col dart-button" onclick="current()" >
<i class="fa-solid fa-file-lines"></i>  Current Dart Issue
</button>
<button class="w3-button w3-col dart-button" onclick="archives()">
<i class="fa-solid fa-folder-open"></i>  Dart Archives
</button>
<button class="w3-button w3-col dart-button" onclick="arrow()" >
<i class="fa-solid fa-arrow-right"></i>  Current Arrow Issue
</button>
<button class="w3-button w3-col dart-button" onclick="ararchives()" >
<i class="fa-solid fa-arrow-left"></i>  Arrow Archives
</button>
<!--
<button class="w3-button w3-col gpaa-button" onclick="parent.open('https://www.gammapialumni.org/');">
<i class="fa-solid fa-globe"></i>  GPAA Website
</button>-->
</div>
<iframe id="dart-current" class="dart w3-show" src="https://docs.google.com/document/d/e/2PACX-1vS_dHj9HAg5AFCE0nv4ZAhF23F97ezQPzWlmMtstTN8Pkcl8hKJCs7OdH4VqZ03d2gEBpo_3hFPZOT2/pub?embedded=true" frameborder="0"></iframe>
<iframe id="dart-archives" class="dart w3-hide" src="https://docs.google.com/document/d/e/2PACX-1vRdLkUAK2e4LfZvksUSt5lLBPBRF7OuJJjg1JjBJDVWFRWYmfsJg0ljuRgOPicyM7cN_scM4NuAyLW2/pub?embedded=true" frameborder="0"></iframe>
<iframe id="arrow" class="dart w3-hide" src="https://docs.google.com/document/d/e/2PACX-1vShbnRRhQ9iN_C5FcmPG5Yd9wqTOFiA0gUNMmGpVWgMiONL0Xe5Sye0WTSgmD3pnLsZtVZucwoPNA8B/pub?embedded=true" frameborder="0"></iframe>
<iframe id="arrow-archive" class="dart w3-hide" src="https://docs.google.com/document/d/e/2PACX-1vTSrw1mx5kOgkUXz3yizybirWpA_bkABlzcdI6A9vOECkjxO4pzmZJmUbX-gu-5Kg54QiW51O9RHa85/pub?embedded=true" frameborder="0"></iframe>
</div>
</div>
<div id="footer"></div>
</body>
<script src="static/script.js"></script>
<script type="text/javascript">
function current() {
document.getElementById("dart-current").classList.add("w3-show");
document.getElementById("dart-current").classList.remove("w3-hide");
document.getElementById("dart-archives").classList.add("w3-hide");
document.getElementById("dart-archives").classList.remove("w3-show");
document.getElementById("arrow").classList.add("w3-hide");
document.getElementById("arrow").classList.remove("w3-show");
document.getElementById("arrow-archive").classList.add("w3-hide");
document.getElementById("arrow-archive").classList.remove("w3-show");
}
function archives() {
document.getElementById("dart-archives").classList.add("w3-show");
document.getElementById("dart-archives").classList.remove("w3-hide");
document.getElementById("dart-current").classList.add("w3-hide");
document.getElementById("dart-current").classList.remove("w3-show");
document.getElementById("arrow").classList.add("w3-hide");
document.getElementById("arrow").classList.remove("w3-show");
document.getElementById("arrow-archive").classList.add("w3-hide");
document.getElementById("arrow-archive").classList.remove("w3-show");
}
function arrow() {
document.getElementById("dart-archives").classList.add("w3-hide");
document.getElementById("dart-archives").classList.remove("w3-show");
document.getElementById("dart-current").classList.add("w3-hide");
document.getElementById("dart-current").classList.remove("w3-show");
document.getElementById("arrow").classList.add("w3-show");
document.getElementById("arrow").classList.remove("w3-hide");
document.getElementById("arrow-archive").classList.add("w3-hide");
document.getElementById("arrow-archive").classList.remove("w3-show");
}
function ararchives() {
document.getElementById("dart-current").classList.add("w3-hide");
document.getElementById("dart-current").classList.remove("w3-show");
document.getElementById("dart-archives").classList.add("w3-hide");
document.getElementById("dart-archives").classList.remove("w3-show");
document.getElementById("arrow").classList.add("w3-hide");
document.getElementById("arrow").classList.remove("w3-show");
document.getElementById("arrow-archive").classList.add("w3-show");
document.getElementById("arrow-archive").classList.remove("w3-hide");
}
</script>
</html>