index.html 462 B

123456789101112131415161718
  1. {% import 'ui.html' as ui with context %}
  2. <html>
  3. <head>
  4. <title>Hello</title>
  5. <link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
  6. </head>
  7. <body>
  8. <a href="{{ url_for('admin_index') }}">Admin page</a>
  9. <h1>Hello World !</h1>
  10. <ul>
  11. {% for s in sites %}
  12. <li><a href="{{ url_for('site_main_article_snapshot', id=s['id']) }}">{{ ui.logo(s["name"]) }}</a></li>
  13. {% endfor %}
  14. </ul>
  15. </body>
  16. </html>