index.html 410 B

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