steam-chat-viewer/steam_chat_viewer/templates/home.html
2022-06-01 19:24:36 +02:00

35 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>STEAM Chat Logs</title>
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='icon.svg') }}">
<link rel=stylesheet href="{{ url_for('static', filename='style.css') }}">
<script src="{{ url_for('static', filename='script.js') }}"></script>
</head>
<body>
<header>
<h1 class=logo><a href="{{ url_for('home') }}">STEAM Chat Logs <img src="{{ url_for('static', filename='icon.svg') }}"></a></h1>
</header>
<main>
<ul class=contacts>
{% for contact in contacts: -%}
<li><a href="{{ url_for('home', filter=contact['url']) }}">{{ contact['name'] }}</a></li>
{% endfor -%}
</ul>
<ul class=messages>
{% for message in messages: -%}
<li class=message>
<div class=metadata>
<div class=from><a href="{{ url_for('home', filter=message['from_url']) }}">{{ message['from_name'] }}</a></div>
to
<div class=to><a href="{{ url_for('home', filter=message['to_url']) }}">{{ message['to_name'] }}</a></div>
at
<div class=date>{{ message['date'] }}</div>
</div>
<div class=body>{{ message['message'] }}</div>
</li>
{% endfor -%}
</ul>
</main>
</body>
</html>