forked from cal-cs184/hw-webpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.08 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
<html>
<head>
<title>JP Webpages</title>
<link rel="stylesheet" href="styler.css">
<link rel="icon" href="images/wp-logo.png" type="image/icon type">
</head>
<body>
<h1 align="center">CS184/284A Project & Homework Webpages</h1>
<div class="des">
<h3>Jacqueline Perez, Spring 2024</h3>
<p>
Linked are the Webpage Reports for Projects and Homeworks for CS 184: Computer Graphics and Imaging.
Consisting of both indivial and partnered work on the assignments, while the writeup webpages were styled by myself.
</p>
</div>
<nav class="bar">
<ul class="wpList">
<li><a href="/hw1/index.html">Homework 1</a></li>
<li><a href="/hw2/index.html">Project: Mesh Edit</a></li>
</ul>
</nav>
</body>
<script>
var links = document.body.getElementsByTagName("a")
var a = window.location.href.indexOf(".io")
var repo_name = window.location.href.substring(a+3)
for(var i = 0; i < links.length; i++){
var link = links[i]
var actual_name = link.href.substring(link.href.indexOf(".io")+4)
link.href = repo_name + actual_name
}
</script>
</html>