autoindex.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Index of {{ path }}</title>
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
  7. <link rel="stylesheet" href="/assets/css/main.css" />
  8. </head>
  9. <body>
  10. <h1>Index of {{ path }}</h1>
  11. <table class="file-table">
  12. <thead>
  13. <tr>
  14. <th>Name</th>
  15. <th>Last Modified</th>
  16. <th>Size</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for entry in entries %}
  21. <tr>
  22. <td><a href="{{ entry.url }}">{{ entry.name }}</a></td>
  23. <td>{{ entry.modified }}</td>
  24. <td>{{ entry.size }}</td>
  25. </tr>
  26. {% endfor %}
  27. </tbody>
  28. </table>
  29. <!-- Footer -->
  30. <footer id="footer">
  31. <p class="copyright">
  32. 联系我们:contact@dragonos.org
  33. <br />
  34. <a href="https://github.com/DragonOS-Community/mirror-proxy", target="_blank">
  35. 完善此页面
  36. </a>
  37. </p>
  38. <p class="copyright" style="margin-top: 0">
  39. ©2022-2025 DragonOS Community
  40. <br />
  41. All rights reserved.
  42. </p>
  43. </footer>
  44. <!-- Scripts -->
  45. <script src="/assets/js/jquery.min.js"></script>
  46. <!-- <script src="/assets/js/main.js"></script> -->
  47. </body>
  48. </html>