index.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /*
  3. * Personal website of UltrasonicMadness
  4. * Copyright (C) 2017 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('Mirrors', 'blue');
  26. ?>
  27. </head>
  28. <body>
  29. <?php
  30. gen_left_pane();
  31. ?>
  32. <div id="right-pane">
  33. <header>
  34. <h1>Mirrors</h1>
  35. <p>Well, sort of.</p>
  36. </header>
  37. <main>
  38. <h3><a href="/agegate?nexturl=/mirrors/everlasting-summer">Everlasting Summer</a> (<em><a target="_blank" href="https://www.gnu.org/proprietary/">NON-FREE</a></em>)</h3>
  39. </main>
  40. <?php inc_footer(); ?>
  41. </div>
  42. </body>
  43. </html>