ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/templates/scherm.html

38 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NS Scherm</title>
<meta http-equiv="refresh" content="3; url=/">
<link rel="stylesheet" href="{{ url_for('static', filename='scherm_style.css') }}"/>
</head>
<body>
<table class="tabel-lokaal">
<tr>
<th class="tabel-lokaal-header">Berichten uit {{ locatie[1] }}</th>
</tr>
{% for row in localeberichten %}
<tr>
<td class="regel-text">
<p class="descriptie-text"><i>{{ row[0] }}</i></p>
<p class="descriptie-naam">Door <i>{{ row[1] }}</i></p>
</td>
</tr>
{% endfor %}
</table>
<table class="tabel-all">
<tr>
<th class="tabel-all-header">Berichten uit heel nederland</th>
</tr>
{% for row in allberichten %}
<tr>
<td class="regel-text">
<p class="descriptie-text"><i>{{ row[0] }}</i></p>
<p class="descriptie-naam">Door <i>{{ row[1] }}</i> uit <i>{{ row[2] }}</i></p>
</td>
</tr>
{% endfor %}
</table>
<h3 style="text-align: center">Meer berichten kunt u terug zien op twitter.com/nszuiltest33332</h3>
</body>
</html>