forked from azexo/Azexo-Composer-WYSIWYG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
executable file
·41 lines (38 loc) · 1.83 KB
/
example.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="bootstrap/bootstrap.min.css">
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="underscore-min.js"></script>
<script type="text/javascript" src="bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="azexo_composer/jquery-waypoints/waypoints.min.js"></script>
<script type="text/javascript" src="azexo_composer/js/smoothscroll.js"></script>
<link type="text/css" rel="stylesheet" href="azexo_composer/azexo_composer.css">
<!-- vvv ONLY FOR BACKEND vvv -->
<link type="text/css" rel="stylesheet" href="azexo_composer/azexo_composer_backend.css">
<script type="text/javascript">
window.azexo_baseurl = 'azexo_composer/';
window.azexo_prefix = '';
window.azexo_editor = true;
window.azexo_online = false;
$(function() {
$('#example').azexo_composer();
});
</script>
<script type="text/javascript" src="jquery-ui.min.js"></script>
<script type="text/javascript" src="azexo_composer/azexo_param_types.min.js"></script>
<script type="text/javascript" src="azexo_composer/azexo_elements.min.js"></script>
<script type="text/javascript" src="azexo_composer/azexo_composer.min.js"></script>
<!-- ^^^ ONLY FOR BACKEND ^^^ -->
<style>
body > .container > .az-container { margin-top : 34px; margin-bottom : 100px; }
</style>
</head>
<body>
<div class="container">
<textarea id="example" rows="10" cols="45"></textarea>
</div>
</body>
</html>