123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>NFT market</title>
- {% load static %}
- <link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
- <script>
- </script>
- </head>
- <body>
- <div id="content">
- <h1>NFT market</h1>
- <div class="mainblockcontent">
- {% block content %}
- {% endblock %}
- </div>
- </div>
-
- </body>
- </html>
|