Initial commit: Schedule service for son
This commit is contained in:
commit
af2ea7be06
19 changed files with 2270 additions and 0 deletions
25
frontend/public/index.html
Normal file
25
frontend/public/index.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Расписание</title>
|
||||
<link rel="stylesheet" href="/static/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div id="today-section" class="day-section">
|
||||
<h1 class="day-title" id="today-title">Сегодня</h1>
|
||||
<div id="today-content"></div>
|
||||
</div>
|
||||
|
||||
<div id="tomorrow-section" class="day-section">
|
||||
<h1 class="day-title" id="tomorrow-title">Завтра</h1>
|
||||
<div id="tomorrow-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/static/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue