-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathindex.html
107 lines (94 loc) · 3.87 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Material Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- MaterializeCSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css">
<!-- Editor' style -->
<link rel="stylesheet" href="../dist/materialnote.css">
<title>MaterialNote v2.0.5</title>
<style>
nav {
position: fixed;
z-index: 1000;
}
.nav-wrapper {
background-color: #212121;
}
.nav-wrapper > .brand-logo {
margin-left: 15px;
}
</style>
</head>
<body>
<nav class="topBar">
<div class="nav-wrapper">
<a href="#" class="brand-logo">Fixed navBar</a>
</div>
</nav>
<div class="container">
<br /><br /><br /><br />
<div class="row">
<div class="col s12">
<h4>MaterialNote v2</h4>
<h6>Super simple wysiwyg editor on Materialize</h6>
</div>
</div>
<div class="row">
<div class="col s12">
<a href="http://materializecss.com" target="_blank" class="chip purple white-text">Materialize CSS</a>
<a href="https://material.io/icons/" target="_blank" class="chip green white-text">with Material Design Icons</a>
<a href="http://summernote.org/" target="_blank" class="chip amber darken-3 white-text">based on summernote.js</a>
</div>
</div>
<!-- editor holder -->
<div class="materialnote">
<table class="striped highlight responsive-table">
<thead>
<tr><th>(header)</th><th>(header)</th><th>(header)</th><th>(header)</th></tr>
</thead>
<tbody>
<tr><td id="1-1">(table)</td><td id="1-2">(table)</td><td id="1-3">(table)</td><td id="1-4">(table)</td></tr>
<tr><td id="2-1">(table)</td><td id="2-2">(table)</td><td id="2-3">(table)</td><td id="2-4">(table)</td></tr>
</tbody>
</table>
<a href="http://www.web-forge.info" target="_blank">Web Forge!</a>
<a href="http://www.ya.com">Ya!</a>
<p>MaterialNote v2.0.5!</p><br />
<img class="responsive-img" src="examples/bamboo.jpg" />
</div>
line of text...<br />
<div class="materialnote">
<p>MaterialNote v2.0.5!</p><br />
</div>
<br /><br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
<br /><br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
line of text...<br />
<br /><br />
</div>
<script data-main="src/js/app" data-editor-type="materialize" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.9/require.min.js"></script>
</body>
</html>