market.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <section id="market_top" class="d-flex align-items-center">
  4. <div class="container" data-aos="zoom-out" data-aos-delay="100">
  5. <h1>Welcome to <span>artFi</span></h1>
  6. <h2> You can bid anything you like here! </h2>
  7. <h2> If you like it. Just Click It! </h2>
  8. </div>
  9. </section>
  10. <br>
  11. <div class="container">
  12. <div class="row row-cols-4">
  13. {% for art in listings %}
  14. <div class="card col-md-3 grid-item shadow p-3 mb-5 bg-white rounded" type="button" onclick="window.location.href='{{ url_for('dashboards.modal_home')}}'">
  15. <img class="market_each_bid_image_size" src="static/repository/{{art[4]}}">
  16. <div class="row" id="market_item_name_left">
  17. <b>{{art[0]}}</b>
  18. </div>
  19. <div class="row">
  20. <p id="market_item_text_left">Current Bid</b>
  21. <p id="market_item_text_right">(Price) <span class="price-span">USD</span></b>
  22. </div>
  23. <div class="row">
  24. <p id="market_item_text_left">Creator</b>
  25. <p id="market_item_text_right"><img src="static/Creator_Icon/" height=25 width=25>(Creator Icon)(Creator Name)</b>
  26. </div>
  27. </div>
  28. {% endfor %}
  29. </div>
  30. </div>
  31. {% block modal %}{% endblock %}
  32. {% block script %}{% endblock %}
  33. {% endblock %}