| 12345678910111213141516 |
- <html>
- <head>
- <title>Hello</title>
- <link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
- </head>
- <body>
- <a href="{{ url_for('admin_index') }}">Admin page</a>
- <h1>Hello World !</h1>
- <ul>
- {% for s in sites %}
- <li><a href="{{ url_for('site_main_article_snapshot', id=s['id']) }}">{{ s["name"] }}</a></li>
- {% endfor %}
- </ul>
- </body>
- </html>
|