Skip to content

Commit

Permalink
Initial content to redirect the security/privacy questionnaire to w3c…
Browse files Browse the repository at this point in the history
….github.io. (#1)

* Initial content to redirect the security/privacy questionnaire to w3c.github.io.

* Fix the TAG group ID.
  • Loading branch information
jyasskin authored Jan 10, 2025
1 parent af98e52 commit da4d35b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# w3ctag.github.io

Redirects links to repositories that have been transferred to other orgs

See <https://tag.w3.org/> for the TAG's homepage.
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!DOCTYPE html>
<script>
let currentHash = window.location.hash;
let newLocation = "https://tag.w3.org/" + currentHash;
window.location = newLocation;
</script>
6 changes: 6 additions & 0 deletions security-questionnaire/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!DOCTYPE html>
<script>
let currentHash = window.location.hash;
let newLocation = "https://w3c.github.io/security-questionnaire/" + currentHash;
window.location = newLocation;
</script>
5 changes: 5 additions & 0 deletions w3c.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"group": 49310
, "contacts": ["ylafon"]
, "repo-type": "homepage"
}

0 comments on commit da4d35b

Please sign in to comment.