draft control panel
This commit is contained in:
parent
7a955ff0f2
commit
548d3eaa4a
@ -12,3 +12,11 @@ indent_size = 4
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.js]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[{*.html,*.css,*.json}]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1,3 @@
|
||||
*.db
|
||||
|
||||
public/bootstrap*
|
||||
|
33
public/index.html
Normal file
33
public/index.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru" class="h-100" data-bs-theme="auto">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Ну это пиздец</title>
|
||||
<link rel="stylesheet" type="text/css" href="styles.css">
|
||||
<script type="text/javascript" src="app.js"></script>
|
||||
</head>
|
||||
<body class="d-flex h-100 text-center text-bg-dark">
|
||||
<div class="cover-container d-flex w-100 h-100 flex-column">
|
||||
<header class="d-flex justify-content-center py-3 border-bottom border-dark-subtle">
|
||||
<ul class="nav nav-pills">
|
||||
<li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Персоналии</a></li>
|
||||
<li class="nav-item"><a href="#" class="nav-link">Управление</a></li>
|
||||
<li class="nav-item"><a href="#" class="nav-link">Статистика</a></li>
|
||||
<li class="nav-item"><a href="#" class="nav-link">About</a></li>
|
||||
</ul>
|
||||
</header>
|
||||
|
||||
<main class="p-3">
|
||||
</main>
|
||||
|
||||
<footer class="mt-auto text-white-50 p-3 border-top border-dark-subtle">
|
||||
<p class="m-0">
|
||||
by Alexander Popov
|
||||
[https://iiiypuk.me]
|
||||
Version: 0.0.0
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
1
public/styles.css
Normal file
1
public/styles.css
Normal file
@ -0,0 +1 @@
|
||||
@import url('bootstrap.min.css');
|
Loading…
Reference in New Issue
Block a user