暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Gallery.html 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
  7. integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  8. </head>
  9. <body>
  10. <div class="container">
  11. <div class="row">
  12. <div class="col-lg-12">
  13. <h1 class="page-header">Gallery</h1>
  14. </div>
  15. <a class="button button5"href="/">HOME</a>
  16. <hr>
  17. {% for image_name in image_names %}
  18. <div class="col-lg-3 col-md-4 col-xs-6 thumb">
  19. <img class="img-responsive" src=" {{url_for('send_image', filename=image_name )}}"style="width:300px;height:300px;">
  20. </div>
  21. {% endfor %}
  22. </div>
  23. </div>
  24. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
  25. integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
  26. crossorigin="anonymous"></script>
  27. </body>
  28. </html>