bots/logsbot/index.html.j2

14 lines
231 B
Plaintext
Raw Normal View History

2021-02-03 09:55:26 +01:00
<html>
<head>
</head>
<body>
<h1>logsbot collective log</h1>
{% for room in payload["rooms"] %}
<h2>{{ room }}</h2>
{% for url in payload[room]["urls"] %}
<img src="{{ url }}" />
{% endfor %}
{% endfor %}
</body>
</html>