index.html 285 B

12345678910111213
  1. <html>
  2. <head>
  3. <title>Hello</title>
  4. <link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
  5. </head>
  6. <body class="admin">
  7. <h1>Main admin page</h1>
  8. {% for name, coll in collections.items() %}
  9. <h2>{{ name }}</h2>
  10. {% endfor %}
  11. </body>
  12. </html>