-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.17 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
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml" data-template="templates:surround" data-template-with="templates/page.html" data-template-at="content">
<div class="row">
<div class="col-md-12">
<div class="alert alert-warning alert-dismissible fade in" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button> Work In Progress. </div>
<h1 data-template="config:app-title">Generated page</h1>
<div data-template="models:list"/>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Mix of columns</h2>
<p>
<div data-template="models:mix"/>
</p>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$('.datatable').DataTable( {
"paging": false,
"scrollX":true,
});
$('#mixedtable').DataTable({
"pageLength": 50,
"order": [],
"scrollX":true,
});
});
</script>
</div>