index.html 494 B

123456789101112131415161718
  1. {% import 'ui.html' as ui with context %}
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1" />
  5. <title>{{ page_title }}</title>
  6. <link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
  7. </head>
  8. <body>
  9. <h1>{{ page_title }}</h1>
  10. <ul>
  11. {% for s in sites %}
  12. <li><a href="{{ url_for('site_main_article_frontpage', id=s['id']) }}">{{ ui.logo(s["name"]) }}</a></li>
  13. {% endfor %}
  14. </ul>
  15. </body>
  16. </html>