Files
recipe/site/templates/index.html
T
2026-08-28 08:55:15 +03:00

21 lines
667 B
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Recipe handwriting recognition</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<main>
<h1>Recipe handwriting recognition</h1>
<p>Managed Flask server is running.</p>
<dl>
<dt>Version</dt><dd>{{ version }}</dd>
<dt>UTC time</dt><dd>{{ current_time }}</dd>
<dt>Python</dt><dd>{{ python_version }}</dd>
<dt>Flask</dt><dd>{{ flask_version }}</dd>
</dl>
</main>
</body>
</html>