mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-12-12 17:40:52 +01:00
30 lines
914 B
HTML
30 lines
914 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Kalker</title>
|
|
<meta name="viewport"
|
|
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="msapplication-tap-highlight" content="no">
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
<link rel="manifest" href="manifest.json">
|
|
<link rel="stylesheet" href="dist/style.css">
|
|
<script src="dist/bundle.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="calculator">
|
|
<kalk-calculator autofocus="true" buttonpanel="true" numberrow="true">
|
|
<console-line>kalker</console-line>
|
|
<console-line>
|
|
<span class="hint">Type 'help' for instructions.</span>
|
|
</console-line>
|
|
</kalk-calculator>
|
|
</div>
|
|
<script src="capacitor.js"></script>
|
|
</body>
|
|
|
|
</html>
|