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