index.php 531 B

123456789101112131415161718192021222324252627
  1. <?php
  2. require_once "../public/load_lang.php";
  3. require_once "../path.php";
  4. require_once "../pcdl/html_head.php";
  5. ?>
  6. <body style="margin: 0;padding: 0;" class="reader_body" >
  7. <script src="../nissaya/nissaya.js"></script>
  8. <style>
  9. .img_box{
  10. background-color:gray;
  11. }
  12. .book_page{
  13. display: inline-block;
  14. background-color: blue;
  15. max-width: 100%;
  16. width: 100vw;
  17. }
  18. </style>
  19. <script>
  20. _nissaya_book = <?php echo $_GET["book"];?>;
  21. _nissaya_para = <?php echo $_GET["para"];?>;
  22. </script>
  23. <div id="contence">
  24. </div>
  25. </body>
  26. </html>