index.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /*
  3. * Personal website of UltrasonicMadness
  4. * Copyright (C) 2017-2018, 2021-2023 UltrasonicMadness
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as
  8. * published by the Free Software Foundation, either version 3 of the
  9. * License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. include($_SERVER['DOCUMENT_ROOT'] . '/../backend/php/page-elements.php');
  20. ?>
  21. <!DOCTYPE html>
  22. <html>
  23. <head>
  24. <?php
  25. gen_html_head('The Dream Code', 'green');
  26. ?>
  27. </head>
  28. <body>
  29. <?php gen_common_pane(); ?>
  30. <div id="page-pane">
  31. <main>
  32. <h1>The Dream Code</h1>
  33. <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>
  34. <h3>Credits</h3>
  35. <ul>
  36. <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>
  37. </ul>
  38. <h3>License</h3>
  39. <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>
  40. <h3>Source Code</h3>
  41. <p>Source code is available on <a target="_blank" href="https://notabug.org/UltrasonicMadness/the-dream-code">NotABug</a>.</p>
  42. </main>
  43. <?php inc_footer(); ?>
  44. </div>
  45. </body>
  46. </html>