-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 1.17 KB
/
index.html
File metadata and controls
47 lines (40 loc) · 1.17 KB
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
<!DOCTYPE html>
<html>
<head>
<title>More than 10 years of frontend</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<div class="page">
<header class="header">
<h1>More than 10 years of frontend</h1>
<nav class="nav">
<button class="nav__control button" data-target="section--by-date">By date</button>
<button class="nav__control button" data-target="section--by-group">By group</button>
</nav>
</header>
<main class="main">
<section class="section section--by-date">
<header class="section__header">
<h2>By date</h2>
<nav class="nav-group"></nav>
</header>
</section>
<section class="section section--by-group">
<header class="section__header">
<h2>By group</h2>
<!-- <nav class="nav-group"></nav> -->
</header>
</section>
</main>
</div>
<template id="data-widget-tmpl">
<div class="data-widget">
<ul class="list list-years"></ul>
<ul class="list list-data"></ul>
</div>
</template>
<script src="./data.js"></script>
<script src="./script.js"></script>
</body>
</html>