21 lines
634 B
HTML
21 lines
634 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<title>PWSS</title>
|
|
</head>
|
|
<body>
|
|
<img id="camera" src="http://openwebrx.local:9000/stream.mjpg" width="640" height="480" autoplay="">
|
|
<div id="weather-data">
|
|
<ul>
|
|
<li>{{stinker}}</li>
|
|
{% for i in HTP.keys() %}
|
|
<li>{{HTP[i]}}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html> |