25 lines
741 B
HTML
25 lines
741 B
HTML
<!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?v=2"></script>
|
|
</body>
|
|
</html>
|
|
|