This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
roadmap.html
76 lines (73 loc) · 3.7 KB
/
roadmap.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
<title>roadmap :: Milemarker</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.1.3/material.indigo-pink.min.css">
<link rel="stylesheet" href="css/milemarker.css">
<script defer src="https://code.getmdl.io/1.1.3/material.min.js"></script>
<script src="https://code.jquery.com/jquery-3.0.0.min.js" integrity="sha256-JmvOoLtYsmqlsWxa7mDSLMwa6dZ9rrIdtrrVYRnDRH0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/remarkable/1.6.2/remarkable.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.14.1/moment.min.js"></script>
<script src="js/common.js"></script>
<script src="js/roadmap.js"></script>
</head>
<body>
<div class="mdl-layout__container">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header has-drawer">
<header class="mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600 is-casting-shadow">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Material Motion Milemarker :: roadmap</span>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation">
<form name="filter">
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="filter-starred">
<input type="radio" id="filter-starred" class="mdl-radio__button" name="filterby" value="starred">
<span class="mdl-radio__label">starred</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="filter-android">
<input type="radio" id="filter-android" class="mdl-radio__button" name="filterby" value="android">
<span class="mdl-radio__label">android</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="filter-appleos">
<input type="radio" id="filter-appleos" class="mdl-radio__button" name="filterby" value="appleos">
<span class="mdl-radio__label">appleOS</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="filter-web">
<input type="radio" id="filter-web" class="mdl-radio__button" name="filterby" value="web">
<span class="mdl-radio__label">web</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="filter-other">
<input type="radio" id="filter-other" class="mdl-radio__button" name="filterby" value="other">
<span class="mdl-radio__label">other</span>
</label>
</form>
</nav>
</div>
</header>
<div class="mdl-layout__drawer mdl-color--blue-grey-800">
<nav class="mdl-navigation" id="navigation"></nav>
<script src="js/nav.js"></script>
</div>
<main class="mdl-layout__content mdl-color--grey-100">
<div id="container" class="mdl-grid">
<table class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
<thead>
<tr>
<th class="mdl-data-table__cell--non-numeric">Star</th>
<th class="mdl-data-table__cell--non-numeric">Owner</th>
<th class="mdl-data-table__cell--non-numeric">Status</th>
<th class="mdl-data-table__cell--non-numeric">Repo</th>
<th class="mdl-data-table__cell--non-numeric">Name</th>
<th class="mdl-data-table__cell--non-numeric">Goal date</th>
<th class="mdl-data-table__cell--non-numeric">Progress</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</main>
</div>
</div>
</body>
</html>