steam-chat-viewer/steam_chat_viewer/templates/home.html
mwiegand ef7f8ac113 wip
2022-06-01 18:19:18 +02:00

21 lines
652 B
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=sms_list>
{% for message in messages: -%}
<li>{{ message }}</li>
{% endfor -%}
</ul>
</main>
</body>
</html>