-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtables.html
More file actions
159 lines (159 loc) · 8.53 KB
/
tables.html
File metadata and controls
159 lines (159 loc) · 8.53 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<title>Aione Framework Documentation</title>
<!-- Aione framework website, 3D websites, Grid system -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="identifier-url" content="https://aioneframework.com/" />
<meta name="title" content="Aione Framework Documentation" />
<meta name="description" content="Official documentation for Aione framework, All-in-one front end framework for designing websites and web applications and mobile applications" />
<meta name="abstract" content="Aione framework code playground to edit html code and live preview the output" />
<meta name="keywords" content="aione framework, editor, code, live, css, framework, css4, layout, playground, help" />
<meta name="author" content="OXO IT SOLUTIONS PRIVATE LIMITED" />
<meta name="revisit-after" content="10" />
<meta name="language" content="EN" />
<meta name="copyright" content="©2017 OXO IT SOLUTIONS PRIVATE LIMITED" />
<meta name="robots" content="All" />
<meta name="application-name" content="Aione Framework Documentation">
<!-- Global stylesheets -->
<link rel="stylesheet" type="text/css" href="https://cdn.aioneframework.com/assets/css/aione.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:100,300,400,600,800">
<link rel="stylesheet" type="text/css" href="assets/css/docs.css">
<script type="text/javascript" src="https://cdn.aioneframework.com/assets/js/vendor.min.js"></script>
<script type="text/javascript" src="https://cdn.aioneframework.com/assets/js/aione.min.js"></script>
<script type="text/javascript" src="assets/js/script.js"></script>
</head>
<style type="text/css">
.aione-page-content{
min-height: 0px;
}
</style>
<body>
<div id="aione_wrapper" class="aione-wrapper layout-header-left aione-layout-wide aione-theme-arcane">
<div class="wrapper">
<div id="aione_header" class="aione-header load-template"></div>
<!-- .aione-header -->
<div id="aione_main" class="aione-main fullwidth">
<div class="wrapper">
<!--
<div id="aione_slider" class="aione-slider"></div>
-->
<!-- .aione-slider -->
<div id="aione_pagetitle" class="aione-pagetitle">
<div class="wrapper">
<div class="aione-title">
<h3 class="aione-page-title">Tables</h3>
</div>
<!-- .aione-title -->
</div>
<!-- .wrapper -->
</div>
<!-- .aione-pagetitle -->
<div id="aione_content" class="aione-content">
<div class="wrapper">
<div id="aione_page_content" class="aione-page-content">
<div class="wrapper">
<section class="options">
<div class=" ar aione-border mb-20">
<form>
<input type="hidden" name="component" value="">
<div class="option-heading">
Select Options to generate Tables
</div>
<div class="ar">
<div class="ac l25">
<div class="field-wrapper">
<div class="field-label">
<label>
<h4 class="field-title">
Classes of Tables
</h4>
</label>
</div>
<!-- field label-->
<div class="field field-type-select">
<select class="browser-default " name="theme">
<option value="">Select Table</option>
<option value="Compact">Compact</option>
<option value="wide">Wide</option>
<option value="rounded">rounded</option>
</select>
</div>
<!-- field -->
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</section>
<section class="content">
<div class="aione-tabs theme-bold horizontal align-left">
<div class="nav bg-grey bg-lighten-2">
<div data-target="#tab_preview" class="active">
<i class="ion-monitor pr-10">
</i>
Preview
</div>
<div data-target="#tab_code" class="">
<i class="ion-code pr-10">
</i>
Code
</div>
</div>
<div class="content p-20">
<div id="tab_preview" class="active aione-table">
<table class="compact">
<thead>
<tr>
<th>Name</th>
<th>Item Name</th>
<th>Item Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alvin</td>
<td>Eclair</td>
<td>$0.87</td>
</tr>
<tr>
<td>Alan</td>
<td>Jellybean</td>
<td>$3.76</td>
</tr>
<tr>
<td>Jonathan</td>
<td>Lollipop</td>
<td>$7.00</td>
</tr>
</tbody>
</table>
</div>
<div id="tab_code" class="bg-grey bg-darken-4">
<div data-target="#tab_copy" data-clipboard-target="#tab_code_code" class="clipboard bg-white blue"><i class="ion-clipboard pr-10"></i>Copy Code</div>
<textarea id="tab_code_code" class="aione-code"></textarea>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<!-- .wrapper -->
</div>
<!-- .aione-content -->
<div id="aione_footer" class="aione-footer load-template"></div>
<!-- .aione-footer -->
<div id="aione_copyright" class="aione-copyright load-template"></div>
<!-- .aione-copyright -->
</div>
<!-- .wrapper -->
</div>
<!-- .aione-main -->
</div>
<!-- .wrapper -->
</div><!-- .aione-wrapper -->
</body>
</html>