-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (59 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
layout: page
permalink: /
---
<br></br>
click <button id="clear">CLEAR</button> to clear the localstorage for checkboxs
<br></br>(p.s., since i'm lazy to find the js file, the codes will be added to html file directly)
<script>
document.getElementById("clear").addEventListener("click", function() {
alert("you've clear your checkboxs data"); localStorage.clear();
});
</script>
<p>i was checking on these items: </p>
<h2 style="color:purple;"> requirements: </h2>
(for me most of them seem finished)
<br></br>
<li>
<label>
<input type="checkbox" name="scss" />
.scss
</label>
</li>
i've created .scss along with .css, i just don't know how to watch it.
but since i attached the .css in _layouts, so the changes in .css are made to changed simultaneously in all pages.
<br></br>click <button onclick="window.location.href = 'https://lanyixiao.github.io/WebS19/css/styles.scss';">check</button>
to check the .scss codes:
<br></br>
<li>
<label>
<input type="checkbox" name="data" />
data
</label>
</li>
(which can be found in data/navigation.yaml)
<br></br>
<li>
<label>
<input type="checkbox" name="loop" />
A loop that iterates over the data
</label>
</li>
(the loop statement ' for item in site.data.navigation ' can be found in _includes/navigation.html)
<br></br>
<li>
<label>
<input type="checkbox" name="layout" />
1 layout
</label>
</li>
(the layout can be found in _layouts/page.html.)
(i adjusted the css file and added a javascript file)
<br></br>
<li>
<label>
<input type="checkbox" name="partial" />
1 partial
</label>
</li>
no idea what it is...