| 123456789101112131415161718 |
- {% import 'ui.html' as ui with context %}
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>{{ page_title }}</title>
- <link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
- </head>
- <body>
- <h1>{{ page_title }}</h1>
- <ul>
- {% for s in sites %}
- <li><a href="{{ url_for('site_main_article_frontpage', id=s['id']) }}">{{ ui.logo(s["name"]) }}</a></li>
- {% endfor %}
- </ul>
- </body>
- </html>
|