site_detail.html 434 B

12345678910111213141516
  1. <html>
  2. <head>
  3. <meta name="viewport" content="width=device-width, initial-scale=1" />
  4. <title>Hello</title>
  5. <link href="{{ url_for('static', path='/style.css') }}" rel="stylesheet">
  6. </head>
  7. <body>
  8. <a href="{{ url_for('index') }}">Homepage</a>
  9. <h1>Site {{ site_id }}</h1>
  10. {% for a in main_articles %}
  11. <h2>{{ a["title"] }}</h2>
  12. <p>{{ a["timestamp_virtual"] }}</p>
  13. {% endfor %}
  14. </body>
  15. </html>