| 12345678910111213141516171819 |
- {% import 'ui.html' as ui with context %}
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <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']) }}">{{ ui.logo(s["name"]) }}</a></li>
- {% endfor %}
- </ul>
- </body>
- </html>
|