12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- * Personal website of UltrasonicMadness
- * Copyright (C) 2017-2018, 2021-2023 UltrasonicMadness
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- include($_SERVER['DOCUMENT_ROOT'] . '/../backend/php/page-elements.php');
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <?php
- gen_html_head('The Dream Code', 'green');
- ?>
- </head>
-
- <body>
- <?php gen_common_pane(); ?>
-
- <div id="page-pane">
- <main>
- <h1>The Dream Code</h1>
- <p>The Dream Code is a JavaScript library which uses jQuery to simulate obscure codes which can be entered at the end of the game <a target="_blank" href="https://en.wikipedia.org/wiki/Erika_to_Satoru_no_Yume_Bōken">Erika to Satoru no Yume Bōken</a> to reveal the words of a developer who worked on it. It is intended to be used in a similar manner to scripts which allow sites to respond to the Konami code being input.</p>
-
- <h3>Credits</h3>
- <ul>
- <li><a target="_blank" href="https://tcrf.net/">The Cutting Room Floor</a> for <a target="_blank" href="https://tcrf.net/Erika_to_Satoru_no_Yume_Bouken">detailing how to access the messages at the end of the original game</a>.</li>
- </ul>
-
- <h3>License</h3>
- <p>The Dream Code is available under the <a target="_blank" href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, version 2.0</a>.</p>
-
- <h3>Source Code</h3>
- <p>Source code is available on <a target="_blank" href="https://notabug.org/UltrasonicMadness/the-dream-code">NotABug</a>.</p>
- </main>
-
- <?php inc_footer(); ?>
- </div>
- </body>
- </html>
|