index.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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('JavaScript Licenses', 'gray');
  26. ?>
  27. </head>
  28. <body>
  29. <?php gen_common_pane(); ?>
  30. <div id="page-pane">
  31. <main>
  32. <h1>JavaScript Licenses</h1>
  33. <table id="jslicense-labels1">
  34. <tr>
  35. <td><a href="/common/js/gsembed.js">gsembed.js</a></td>
  36. <td><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache-2.0</a></td>
  37. <td><a href="/common/js/gsembed.js">gsembed.js</a></td>
  38. </tr>
  39. <tr>
  40. <td><a href="/common/js/jquery-3.3.1.min.js">jquery-3.3.1.min.js</a></td>
  41. <td><a href="http://www.jclark.com/xml/copying.txt">Expat</a></td>
  42. <td><a href="/common/js/source/jquery-3.3.1.js">jquery-3.3.1.js</a></td>
  43. </tr>
  44. </table>
  45. </main>
  46. <?php inc_footer(); ?>
  47. </div>
  48. </body>
  49. </html>