2023-08-03 21:18:50 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en" class="h-100" data-bs-theme="auto">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>a2s</title>
|
|
|
|
<meta name="description" content="" />
|
|
|
|
<link rel="manifest" href="manifest.json" />
|
2023-08-06 01:49:23 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="./assets/css/bootstrap-v5.3.1.min.css" />
|
2023-08-03 23:39:02 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="./assets/css/styles.css" />
|
2023-08-03 21:18:50 +03:00
|
|
|
<script type="module">
|
|
|
|
import './assets/js/app.js';
|
|
|
|
</script>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
|
|
</head>
|
|
|
|
<body class="d-flex h-100 text-bg-dark">
|
2023-08-04 01:18:24 +03:00
|
|
|
<div class="cover-container d-flex w-100 h-100 mx-auto flex-column">
|
2023-08-03 21:18:50 +03:00
|
|
|
<!-- app header -->
|
|
|
|
<include src="app/partitial/header.html"></include>
|
|
|
|
|
|
|
|
<!-- app working window -->
|
2023-08-04 01:18:24 +03:00
|
|
|
<main class="p-0 p-md-3">
|
2023-08-04 01:11:53 +03:00
|
|
|
<div class="d-block d-xs-block d-md-flex gap-3">
|
2023-08-03 21:18:50 +03:00
|
|
|
<include src="app/partitial/menu.html"></include>
|
|
|
|
<div class="flex-fill card shadow p-3" id="content"></div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<!-- app footer -->
|
|
|
|
<include src="app/partitial/footer.html"></include>
|
|
|
|
</div>
|
2023-08-03 23:39:02 +03:00
|
|
|
|
2023-08-06 00:58:11 +03:00
|
|
|
<script id="autorun" type="module">
|
|
|
|
function autorun() {
|
|
|
|
log_style =
|
|
|
|
'; font-size: 14px; font-weight: bold; font-style: monospace;' +
|
|
|
|
'background: #000; color: #fff;' +
|
|
|
|
'padding: 8px; border-radius: 5px;';
|
|
|
|
console.log('%c☕ Hello ${username}!', log_style);
|
|
|
|
}
|
|
|
|
autorun();
|
|
|
|
</script>
|
2023-08-03 21:18:50 +03:00
|
|
|
</body>
|
|
|
|
</html>
|