blob: c67eeab8640d738b12618c5c6d2c26de78481021 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<html class="clean_logs">
<head>
<link rel="stylesheet" href="{{ static_file('css/style.css') }}"/>
</head>
<body>
{% for message in messages %}
<span class="nick" style="color: {{ message.color }}">{{ message.author }}<span class="time">{{ message.timestamp }}</span></span><br>
<span class="text">{{ message.content }}</span>
{% endfor %}
</body>
</html>
|