-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (47 loc) · 1.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="ru" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CDS.Vyatka - Мониторинг</title>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<header>
<div class="container">
<div class="header-img">
<img src="./assets/header.png" alt="CDS Vyatka Monitoring Logo">
</div>
<div class="container msg-container-bottom" id="msg">
<p class="msg hide">Message</p>
</div>
</div>
</header>
<main>
<div class="container">
<div class="grid-row table" id="cds-table">
</div>
<template id="cds-table-col-template">
<div class="container-fluid table-column" id="column">
<h1 class="column-header" id="column-header">Column Header</h1>
<div class="column-content" id="column-content">Column Content</div>
</div>
</template>
<template id="cds-table-row-template">
<div class="grid-row flow" id="row">
<div id="content-bus">
<h2 id="bus">Bus</h2>
<small id="gosnum">gosnum</small>
</div>
<h2 id="content-time">Time</h2>
</div>
</template>
</div>
</main>
<footer>
<b><marquee>Кировское областное государственное профессиональное образовательное бюджетное учреждение
«Кировский авиационный техникум»</marquee></b>
</footer>
</body>
<script src="assets/app.js"></script>
</html>