-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (58 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>ASU ASCEND Software</title>
<base target="_blank">
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
table {
width: 100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
td {
text-align: center;
padding: .5em;
}
.semester {
text-align: left;
font-weight: bold;
}
</style>
</head>
<body>
<h1>ASU ASCEND Software</h1>
<p>ASU ASCEND website: <a href="https://asuascend.weebly.com/">https://asuascend.weebly.com/</a></p>
<table>
<!-- <tr>
<th>Semester</th>
<th>GitHub Repository</th>
<th>Documentation</th>
</tr> -->
<tr>
<td class="semester">2025 Spring</td>
<td><a href="https://github.com/ASU-ASCEND/Spring-2025">GitHub</a></td>
<td><a href="https://asu-ascend.github.io/Spring-2025/">Documentation</a></td>
</tr>
<tr>
<td class="semester">2024 Fall</td>
<td><a href="https://github.com/ASU-ASCEND/Fall-2024">GitHub</a></td>
<td><a href="https://asu-ascend.github.io/Fall-2024/">Documentation</a></td>
</tr>
<tr>
<td class="semester">2024 Spring</td>
<td><a href="https://github.com/ASU-ASCEND/AcademicYear-2023-24">GitHub</a></td>
<td></td>
</tr>
<tr>
<td class="semester">2023 Fall</td>
<td><a href="https://github.com/ASU-ASCEND/AcademicYear-2023-24/tree/main/Fall2023">GitHub</a></td>
<td></td>
</tr>
</table>
</body>
</html>