highlights.html 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. {% extends "base_template.html" %}
  2. {% block head %}
  3. <!-- Latest compiled and minified CSS -->
  4. <!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"> -->
  5. <!-- Optional theme -->
  6. <!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous"> -->
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
  9. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
  10. <!-- my css -->
  11. <link rel="stylesheet" type="text/css" href="/static/highlights.css">
  12. <script src="/static/js/lazy.js"></script>
  13. {% endblock %}
  14. {% block body %}
  15. <div class="container">
  16. <h1>See only the <em>Highest Quality</em> Content</h1>
  17. <br />
  18. <!-- work around a lazy load bug,,,im not a fe dev!!! -->
  19. <img src="/static/photos/highlights/{{first_img}}">
  20. {% for image in imgs %}
  21. <img class="lazy" data-src="/static/photos/highlights/{{image}}">
  22. {% endfor %}
  23. </div>
  24. {% endblock %}