mirror of
https://github.com/Vale54321/schafkop-neu.git
synced 2025-12-11 18:09:34 +01:00
25 lines
627 B
HTML
25 lines
627 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="/static/styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1>{{ title }}</h1>
|
|
<p class="lead">{{ message }}</p>
|
|
<p class="version">Schafkopf OS Version: {{ version }}</p>
|
|
|
|
<section class="card">
|
|
<h2>API Test</h2>
|
|
<button id="pingBtn">Ping API</button>
|
|
<pre id="result">Waiting…</pre>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="/static/app.js" type="module"></script>
|
|
</body>
|
|
</html>
|