forked from patternfly/patternfly-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.html
More file actions
29 lines (29 loc) · 863 Bytes
/
Copy pathbasic.html
File metadata and controls
29 lines (29 loc) · 863 Bytes
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
---
categories: [Layouts]
css-extra: false
layout: layout
title: Basic
resource: true
url-js-extra: '!URL_COMPONENTS!datatables/media/js/jquery.dataTables.js'
weight: 1
---
{% include layouts-navbar-primary.html %}
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li>{{ page.title }}</li>
</ol>
<h1>{{ page.title }}</h1>
{% include datatable.html %}
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eget eros tincidunt, semper ante nec, dapibus ante.</p>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
<script>
// Initialize Datatables
$(document).ready( function() {
$('.datatable').dataTable();
});
</script>