1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2026-03-16 15:45:45 +01:00
TableFilter/examples.html
2015-09-06 15:47:34 +10:00

126 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Examples | TableFilter</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Bootstrap theme -->
<link href="assets/css/bootstrap-theme.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/theme.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">TableFilter</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<!-- you can exclude pages using {{#isnt}} helper: {{#isnt data.title 'Blog'}} -->
<li class="active">
<a href="examples.html">Examples</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
<!--
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Github <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://github.com/assemble/assemble">Assemble</a></li>
<li><a href="https://github.com/assemble/generator-assemble">Generator Assemble</a></li>
<li class="divider"></li>
<li class="dropdown-header">Plugins</li>
<li><a href="https://github.com/assemble/assemble-contrib-anchors">assemble-contrib-anchors</a></li>
<li><a href="https://github.com/assemble/assemble-contrib-toc">assemble-contrib-toc</a></li>
</ul>
</li>
</ul>
-->
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container theme-showcase" role="main">
<h1>Examples</h1>
<p>
Browse the following examples to see <code>TableFilter</code> in action.
This library takes HTML tables to a whole new level :)
</p>
<li>
<a href="auto-filter.html">Auto filter, filter as you type behaviour</a>
</li>
<li>
<a href="paging.html">Paging</a>
</li>
<li>
<a href="zero-configuration.html">Zero configuration</a>
</li>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>