-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (81 loc) · 2.62 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta charset="utf-8">
<title>
bootstrap-wysihtml5
</title>
<link rel="stylesheet" type="text/css" href="lib/css/prettify.css">
<link rel="stylesheet" type="text/css" href="compiled/bootstrap.css">
<style type="text/css" media="screen">
.btn.jumbo {
font-size: 20px;
font-weight: normal;
padding: 14px 24px;
margin-right: 10px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
</style>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>bootstrap-wysihtml5-sass</h1>
<p>wysihtml5 + Bootstrap 3 + Sass + (fixes)</p>
</div>
</div>
<div class="container">
<textarea class="form-control" placeholder="Enter text ..." style="width: 100%; height: 200px; padding: 10px"></textarea>
<div class="row">
<div class="col-md-6">
<h2>
About
</h2>
<p>
bootstrap-wysihtml5-sass a Bootstrap 3 + Sass port of <a href="https://github.com/jhollingworth/bootstrap-wysihtml5">jhollingworth/bootstrap-wysihtml5</a>.
It also includes several improvements and bug fixes.
</p>
<p>
<a class="btn btn-large btn-primary jumbo" href="https://github.com/simple10/bootstrap-wysihtml5-sass/">View project on Github</a>
</p>
</div>
<div class="col-md-6">
<h2>
Usage
</h2>
<pre class="prettyprint linenums">
$('textarea').wysihtml5();
</pre>
<h3>
Related Projects
</h3>
<ul>
<li>
<a href="https://github.com/jhollingworth/bootstrap-wysihtml5">bootstrap-wysihtml5</a>
</li>
<li>
<a href="https://github.com/xing/wysihtml5">wysihtml5</a>
</li>
</ul>
</div>
</div>
</div>
<footer>
</footer>
<script src="lib/js/wysihtml5-0.4.0pre.js" type="text/javascript"></script>
<script src="lib/js/jquery.min.js" type="text/javascript"></script>
<script src="lib/js/prettify.js" type="text/javascript"></script>
<script src="lib/js/bootstrap.min.js" type="text/javascript"></script>
<script src="lib/js/imagesloaded.js" type="text/javascript"></script>
<script src="lib/js/underscore.js" type="text/javascript"></script>
<script src="src/bootstrap-wysihtml5.js" type="text/javascript"></script>
<script type="text/javascript">
$('textarea').wysihtml5();
$(prettyPrint);
</script>
</body>
</html>