index.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /*
  3. * Personal website of UltrasonicMadness
  4. * Copyright (C) 2018 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('Home', 'red');
  26. ?>
  27. </head>
  28. <body>
  29. <?php
  30. gen_common_pane();
  31. ?>
  32. <div id="page-pane">
  33. <header>
  34. <h1>UltrasonicMadness</h1>
  35. <p>Looks like a 200.</p>
  36. </header>
  37. <main>
  38. <p>Hello and welcome to my website. This is currently a showcase for programs I have written such as <a href="/software/ultrasonichelix">my SoundHelix frontend</a> and it also offers a Steam-less <a href="/agegate?nexturl=/mirrors/everlasting-summer">mirror</a> for the visual novel <a target="_blank" href="http://everlastingsummer.su/en/">Everlasting Summer</a>. This site and all software it contains is <a target="_blank" href="https://www.gnu.org/philosophy/free-sw.html">freely available</a>, with the possible exception of anything in <a href="/mirrors">the Mirrors section</a>. I can be contacted on contact@ultrasonicmadness.org and I'm available on the code-hosting site <a target="_blank" href="https://notabug.org/UltrasonicMadness">NotABug.org</a>.</p>
  39. <p>Enjoy your stay here.</p>
  40. <p>UltrasonicMadness</p>
  41. </main>
  42. <?php inc_footer(); ?>
  43. </div>
  44. </body>
  45. </html>