index.html 360 B

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