base.html 409 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>NFT market</title>
  5. {% load static %}
  6. <link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
  7. <script>
  8. </script>
  9. </head>
  10. <body>
  11. <div id="content">
  12. <h1>NFT market</h1>
  13. <div class="mainblockcontent">
  14. {% block content %}
  15. {% endblock %}
  16. </div>
  17. </div>
  18. </body>
  19. </html>