KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
941B

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Board";
  3. $PAGE_TYPE = "KXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Board");
  5. $PAGE_SOURCE_2 = ARRAY("Board");
  6. include_once("includes/header.php");
  7. ?>
  8. <script type="text/javascript">
  9. function resizeIframe()
  10. {
  11. var board = document.getElementById("iframe-board");
  12. var height = board.contentWindow.document.body.scrollHeight;
  13. board.style.height = height;
  14. }
  15. </script>
  16. <noscript>
  17. <p>
  18. NOTE: Automatic height only available with JavaScript enabled.
  19. Visit <a href="https://board.kx.studio/">https://board.kx.studio/</a> for the full page.
  20. </p>
  21. </noscript>
  22. <iframe
  23. id="iframe-board"
  24. src="https://board.kx.studio/public/board/f062a2b1cf34806109a3936a9373b8f044f0e0ab4ede4f1e2bf76195af27"
  25. style="display:block;width:100%;min-height:300px;height:calc(100% - 30px);border:none;padding:0;margin:0;"
  26. onload="resizeIframe()"
  27. />
  28. <?php
  29. include_once("includes/footer.php");
  30. ?>