site_detail.html 359 B

123456789101112131415
  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('index') }}">Homepage</a>
  8. <h1>Site {{ site_id }}</h1>
  9. {% for a in main_articles %}
  10. <h2>{{ a["title"] }}</h2>
  11. <p>{{ a["timestamp_virtual"] }}</p>
  12. {% endfor %}
  13. </body>
  14. </html>