-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 727 Bytes
/
index.html
File metadata and controls
25 lines (21 loc) · 727 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DEEM Workshop moved</title>
<!-- Redirect while preserving path -->
<script>
var newBase = "https://deemworkshop.github.io";
window.location.replace(newBase + window.location.pathname + window.location.search + window.location.hash);
</script>
<!-- Fallback if JS disabled -->
<meta http-equiv="refresh" content="0; url=https://deemworkshop.github.io/">
<link rel="canonical" href="https://deemworkshop.github.io/">
</head>
<body>
<p>
The workshop website moved to
<a href="https://deemworkshop.github.io/">deemworkshop.github.io</a>.
</p>
</body>
</html>