s3-bucket-listing.html 896 B

12345678910111213141516171819202122232425
  1. <!-- Source: https://github.com/rufuspollock/s3-bucket-listing -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>S3 Bucket Listing Generator</title>
  6. </head>
  7. <body>
  8. <div id="navigation"></div>
  9. <div id="listing"></div>
  10. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  11. <script type="text/javascript">
  12. var S3BL_IGNORE_PATH = true;
  13. //var BUCKET_NAME = 'public';
  14. var BUCKET_URL = 'https://s3.jibby.org/public';
  15. //var S3B_ROOT_DIR = 'public';
  16. // var S3B_SORT = 'DEFAULT';
  17. var EXCLUDE_FILE = 'index.html'; // change to array to exclude multiple files, regexp also supported e.g. /^(.*\/)?index.html$/ to exclude all index.html
  18. // var AUTO_TITLE = true;
  19. // var S3_REGION = 's3'; // for us-east-1
  20. </script>
  21. <script type="text/javascript" src="https://rufuspollock.github.io/s3-bucket-listing/list.js"></script>
  22. </body>
  23. </html>