Skip to content

Commit

Permalink
Correct redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketstack-matt committed Feb 15, 2024
1 parent 4a61a2b commit 1617e06
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 22 deletions.
File renamed without changes.
17 changes: 17 additions & 0 deletions draft/2024-02/meta/calm/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>API Endpoint</title>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch("calm.json")
.then(response => response.json())
.then(data => {
document.body.textContent = JSON.stringify(data, null, 2);
});
});
</script>
</head>
<body>
</body>
</html>
11 changes: 0 additions & 11 deletions draft/2024-02/meta/index.html

This file was deleted.

File renamed without changes.
17 changes: 17 additions & 0 deletions draft/2024-02/vocab/core/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>API Endpoint</title>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch("core.json")
.then(response => response.json())
.then(data => {
document.body.textContent = JSON.stringify(data, null, 2);
});
});
</script>
</head>
<body>
</body>
</html>
11 changes: 0 additions & 11 deletions draft/2024-02/vocab/index.html

This file was deleted.

0 comments on commit 1617e06

Please sign in to comment.