layout_ajax_content_3.html
5.41 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
<!-- BEGIN PAGE HEADER-->
<div class="row-fluid">
<div class="span12">
<!-- BEGIN PAGE TITLE & BREADCRUMB-->
<h3 class="page-title">
Content Loading via Ajax <small>loading page content via ajax</small>
</h3>
<ul class="breadcrumb">
<li>
<i class="icon-home"></i>
<a href="index.html">Home</a>
<i class="icon-angle-right"></i>
</li>
<li><a href="#"></a></li>
</ul>
<!-- END PAGE TITLE & BREADCRUMB-->
</div>
</div>
<!-- END PAGE HEADER-->
<!-- BEGIN PAGE CONTENT-->
<div class="row-fluid margin-bottom-20">
<div class="span12">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
</div>
<div class="row-fluid">
<div class="span6">
<!-- BEGIN SAMPLE TABLE PORTLET-->
<div class="portlet box red">
<div class="portlet-title">
<div class="caption"><i class="icon-cogs"></i>Simple Table</div>
<div class="tools">
<a href="javascript:;" class="collapse"></a>
<a href="#portlet-config" data-toggle="modal" class="config"></a>
<a href="javascript:;" class="reload"></a>
<a href="javascript:;" class="remove"></a>
</div>
</div>
<div class="portlet-body">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th class="hidden-480">Username</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td class="hidden-480">makr124</td>
<td><span class="label label-success">Approved</span></td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Nilson</td>
<td class="hidden-480">jac123</td>
<td><span class="label label-info">Pending</span></td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>Cooper</td>
<td class="hidden-480">lar</td>
<td><span class="label label-warning">Suspended</span></td>
</tr>
<tr>
<td>3</td>
<td>Sandy</td>
<td>Lim</td>
<td class="hidden-480">sanlim</td>
<td><span class="label label-danger">Blocked</span></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END SAMPLE TABLE PORTLET-->
</div>
<div class="span6">
<!-- BEGIN BORDERED TABLE PORTLET-->
<div class="portlet box yellow">
<div class="portlet-title">
<div class="caption"><i class="icon-coffee"></i>Bordered Table</div>
<div class="tools">
<a href="javascript:;" class="collapse"></a>
<a href="#portlet-config" data-toggle="modal" class="config"></a>
<a href="javascript:;" class="reload"></a>
<a href="javascript:;" class="remove"></a>
</div>
</div>
<div class="portlet-body">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th class="hidden-480">Username</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td class="hidden-480">makr124</td>
<td><span class="label label-success">Approved</span></td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Nilson</td>
<td class="hidden-480">jac123</td>
<td><span class="label label-info">Pending</span></td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>Cooper</td>
<td class="hidden-480">lar</td>
<td><span class="label label-warning">Suspended</span></td>
</tr>
<tr>
<td>3</td>
<td>Sandy</td>
<td>Lim</td>
<td class="hidden-480">sanlim</td>
<td><span class="label label-danger">Blocked</span></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END BORDERED TABLE PORTLET-->
</div>
</div>
<!-- END PAGE CONTENT-->