2025-10-14 15:15:58 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="content-type" content="text/html" charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width" initial-scale="1.0">
|
|
|
|
|
|
|
|
|
|
<title>LoMeS | Meshtastic</title>
|
2025-10-20 13:38:34 +02:00
|
|
|
<link rel="icon" href="{{ url_for('static', filename='images/lomes.svg') }}">
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
2025-10-14 15:15:58 +02:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<section>
|
|
|
|
|
<header>
|
2025-10-20 13:38:34 +02:00
|
|
|
<img class="icon" src="{{ url_for('static', filename='images/lomes.svg') }}">
|
2025-10-14 15:15:58 +02:00
|
|
|
<h1>Welcome to LoMeS</h1>
|
|
|
|
|
</header>
|
|
|
|
|
<div class="textBox">
|
2025-10-14 18:30:10 +02:00
|
|
|
<h3>A Local Meshtastic Server in development</h3><br>
|
2025-10-14 15:15:58 +02:00
|
|
|
<p>If you see this site, means "LoMeS" development environment is running!</p>
|
2025-10-14 18:40:39 +02:00
|
|
|
<p>Thanks for collaborating and trying to make things more real...</p>
|
2025-10-14 15:15:58 +02:00
|
|
|
</div>
|
2025-10-14 21:46:07 +02:00
|
|
|
<div class="textBox">
|
2025-10-14 15:15:58 +02:00
|
|
|
<h3>Configuration Summary</h3>
|
|
|
|
|
<div class="confBox">
|
2025-10-14 21:46:07 +02:00
|
|
|
<ul>
|
|
|
|
|
<li>User executing flask : {{user}}</li>
|
2025-10-16 17:13:19 +02:00
|
|
|
<li>Machine time : {{time}}</li>
|
|
|
|
|
<li>{{sysinfo}}</li>
|
2025-10-14 21:46:07 +02:00
|
|
|
</ul>
|
|
|
|
|
</div>
|
2025-10-14 15:15:58 +02:00
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</body>
|
2025-10-20 13:38:34 +02:00
|
|
|
</html>
|