├── .gitignore ├── .vscode └── settings.json ├── README.md ├── golive.png ├── netlify.toml ├── src ├── index.html ├── pages │ ├── 1 │ │ └── index.html │ ├── 2 │ │ ├── README.md │ │ └── index.html │ ├── 3 │ │ └── index.html │ ├── 4 │ │ ├── Braingate.svg │ │ ├── DoorsOS.svg │ │ ├── README.md │ │ ├── Vault.svg │ │ ├── cup.svg │ │ ├── file.svg │ │ ├── index.html │ │ ├── metaverse.svg │ │ └── mewmew.jpg │ ├── 5 │ │ ├── art1.png │ │ ├── art2.png │ │ ├── comment.png │ │ ├── hackclub.png │ │ ├── hackerbook.html │ │ ├── hpfp.jpg │ │ ├── index.html │ │ ├── like.png │ │ ├── login.css │ │ ├── readme.md │ │ ├── script.js │ │ ├── share.png │ │ ├── style.css │ │ ├── sus.gif │ │ └── uwu.png │ ├── 6 │ │ ├── BackgroundImg.jpg │ │ ├── LeftChevron.png │ │ ├── ProfilePhoto.png │ │ ├── Spotify.png │ │ ├── images │ │ │ ├── Beyonce.jpg │ │ │ ├── Joker.jpg │ │ │ ├── Latte.jpg │ │ │ └── Queens.jpg │ │ ├── index.html │ │ ├── music │ │ │ ├── Beyonce.mp3 │ │ │ ├── Joker.mp3 │ │ │ ├── Latte.mp3 │ │ │ └── Queens.mp3 │ │ ├── profilePage.html │ │ ├── script.js │ │ └── style.css │ ├── 7 │ │ ├── Braingate.png │ │ ├── README.md │ │ ├── Vault.png │ │ ├── brain.jpg │ │ ├── braingateGI.html │ │ ├── file.svg │ │ ├── index.html │ │ ├── jetbrainsmono-bold-webfont.woff │ │ ├── jetbrainsmono-bold-webfont.woff2 │ │ ├── jetbrainsmono-bolditalic-webfont.woff │ │ ├── jetbrainsmono-bolditalic-webfont.woff2 │ │ ├── jetbrainsmono-regular-webfont.woff │ │ ├── jetbrainsmono-regular-webfont.woff2 │ │ ├── metaverse.png │ │ └── wallpaper.png │ ├── 8 │ │ └── index.html │ ├── 9 │ │ ├── index.html │ │ └── script.js │ ├── 10 │ │ ├── index.html │ │ ├── main.js │ │ └── zach.png │ ├── 11 │ │ ├── assets │ │ │ ├── mm_frame.mtl │ │ │ ├── mm_frame.obj │ │ │ └── mm_frame.png │ │ ├── index.html │ │ └── index.js │ ├── 12 │ │ ├── index.html │ │ └── index.js │ ├── 13 │ │ ├── index.html │ │ ├── index.js │ │ └── readme.md │ ├── 14 │ │ └── index.html │ └── .gitkeep └── style.css └── templates └── template.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.root": "/src" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/README.md -------------------------------------------------------------------------------- /golive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/golive.png -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/netlify.toml -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/1/index.html -------------------------------------------------------------------------------- /src/pages/10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/10/index.html -------------------------------------------------------------------------------- /src/pages/10/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/10/main.js -------------------------------------------------------------------------------- /src/pages/10/zach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/10/zach.png -------------------------------------------------------------------------------- /src/pages/11/assets/mm_frame.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/11/assets/mm_frame.mtl -------------------------------------------------------------------------------- /src/pages/11/assets/mm_frame.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/11/assets/mm_frame.obj -------------------------------------------------------------------------------- /src/pages/11/assets/mm_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/11/assets/mm_frame.png -------------------------------------------------------------------------------- /src/pages/11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/11/index.html -------------------------------------------------------------------------------- /src/pages/11/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/11/index.js -------------------------------------------------------------------------------- /src/pages/12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/12/index.html -------------------------------------------------------------------------------- /src/pages/12/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/12/index.js -------------------------------------------------------------------------------- /src/pages/13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/13/index.html -------------------------------------------------------------------------------- /src/pages/13/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/13/index.js -------------------------------------------------------------------------------- /src/pages/13/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/13/readme.md -------------------------------------------------------------------------------- /src/pages/14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/14/index.html -------------------------------------------------------------------------------- /src/pages/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/2/README.md -------------------------------------------------------------------------------- /src/pages/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/2/index.html -------------------------------------------------------------------------------- /src/pages/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/3/index.html -------------------------------------------------------------------------------- /src/pages/4/Braingate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/Braingate.svg -------------------------------------------------------------------------------- /src/pages/4/DoorsOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/DoorsOS.svg -------------------------------------------------------------------------------- /src/pages/4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/README.md -------------------------------------------------------------------------------- /src/pages/4/Vault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/Vault.svg -------------------------------------------------------------------------------- /src/pages/4/cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/cup.svg -------------------------------------------------------------------------------- /src/pages/4/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/file.svg -------------------------------------------------------------------------------- /src/pages/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/index.html -------------------------------------------------------------------------------- /src/pages/4/metaverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/metaverse.svg -------------------------------------------------------------------------------- /src/pages/4/mewmew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/4/mewmew.jpg -------------------------------------------------------------------------------- /src/pages/5/art1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/art1.png -------------------------------------------------------------------------------- /src/pages/5/art2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/art2.png -------------------------------------------------------------------------------- /src/pages/5/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/comment.png -------------------------------------------------------------------------------- /src/pages/5/hackclub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/hackclub.png -------------------------------------------------------------------------------- /src/pages/5/hackerbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/hackerbook.html -------------------------------------------------------------------------------- /src/pages/5/hpfp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/hpfp.jpg -------------------------------------------------------------------------------- /src/pages/5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/index.html -------------------------------------------------------------------------------- /src/pages/5/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/like.png -------------------------------------------------------------------------------- /src/pages/5/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/login.css -------------------------------------------------------------------------------- /src/pages/5/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/readme.md -------------------------------------------------------------------------------- /src/pages/5/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/script.js -------------------------------------------------------------------------------- /src/pages/5/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/share.png -------------------------------------------------------------------------------- /src/pages/5/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/style.css -------------------------------------------------------------------------------- /src/pages/5/sus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/sus.gif -------------------------------------------------------------------------------- /src/pages/5/uwu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/5/uwu.png -------------------------------------------------------------------------------- /src/pages/6/BackgroundImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/BackgroundImg.jpg -------------------------------------------------------------------------------- /src/pages/6/LeftChevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/LeftChevron.png -------------------------------------------------------------------------------- /src/pages/6/ProfilePhoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/ProfilePhoto.png -------------------------------------------------------------------------------- /src/pages/6/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/Spotify.png -------------------------------------------------------------------------------- /src/pages/6/images/Beyonce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/images/Beyonce.jpg -------------------------------------------------------------------------------- /src/pages/6/images/Joker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/images/Joker.jpg -------------------------------------------------------------------------------- /src/pages/6/images/Latte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/images/Latte.jpg -------------------------------------------------------------------------------- /src/pages/6/images/Queens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/images/Queens.jpg -------------------------------------------------------------------------------- /src/pages/6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/index.html -------------------------------------------------------------------------------- /src/pages/6/music/Beyonce.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/music/Beyonce.mp3 -------------------------------------------------------------------------------- /src/pages/6/music/Joker.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/music/Joker.mp3 -------------------------------------------------------------------------------- /src/pages/6/music/Latte.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/music/Latte.mp3 -------------------------------------------------------------------------------- /src/pages/6/music/Queens.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/music/Queens.mp3 -------------------------------------------------------------------------------- /src/pages/6/profilePage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/profilePage.html -------------------------------------------------------------------------------- /src/pages/6/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/script.js -------------------------------------------------------------------------------- /src/pages/6/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/6/style.css -------------------------------------------------------------------------------- /src/pages/7/Braingate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/Braingate.png -------------------------------------------------------------------------------- /src/pages/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/README.md -------------------------------------------------------------------------------- /src/pages/7/Vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/Vault.png -------------------------------------------------------------------------------- /src/pages/7/brain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/brain.jpg -------------------------------------------------------------------------------- /src/pages/7/braingateGI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/braingateGI.html -------------------------------------------------------------------------------- /src/pages/7/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/file.svg -------------------------------------------------------------------------------- /src/pages/7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/index.html -------------------------------------------------------------------------------- /src/pages/7/jetbrainsmono-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/jetbrainsmono-bold-webfont.woff -------------------------------------------------------------------------------- /src/pages/7/jetbrainsmono-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/jetbrainsmono-bold-webfont.woff2 -------------------------------------------------------------------------------- /src/pages/7/jetbrainsmono-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/jetbrainsmono-bolditalic-webfont.woff -------------------------------------------------------------------------------- /src/pages/7/jetbrainsmono-bolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/jetbrainsmono-bolditalic-webfont.woff2 -------------------------------------------------------------------------------- /src/pages/7/jetbrainsmono-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/jetbrainsmono-regular-webfont.woff -------------------------------------------------------------------------------- /src/pages/7/jetbrainsmono-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/jetbrainsmono-regular-webfont.woff2 -------------------------------------------------------------------------------- /src/pages/7/metaverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/metaverse.png -------------------------------------------------------------------------------- /src/pages/7/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/7/wallpaper.png -------------------------------------------------------------------------------- /src/pages/8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/8/index.html -------------------------------------------------------------------------------- /src/pages/9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/9/index.html -------------------------------------------------------------------------------- /src/pages/9/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/pages/9/script.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/src/style.css -------------------------------------------------------------------------------- /templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/pass-the-story/HEAD/templates/template.html --------------------------------------------------------------------------------