27 lines
1005 B
HTML
27 lines
1005 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Frappe DataTable - A simple, modern datatable library for the web</title>
|
|
<link href="frappe-datatable.css" rel="stylesheet">
|
|
<link href="index.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<section class="hero showcase">
|
|
<h1>Frappe DataTable</h1>
|
|
<p>A simple, modern and interactive datatable for the web</p>
|
|
<div class="datatable-1"></div>
|
|
</section>
|
|
<section class="showcase">
|
|
<h2>Tree Structure</h2>
|
|
<p>Show tree structured rows in your table</p>
|
|
<div class="datatable-2"></div>
|
|
</section>
|
|
<script src="../node_modules/clusterize.js/clusterize.js"></script>
|
|
<script src="../node_modules/sortablejs/Sortable.js"></script>
|
|
<script src="frappe-datatable.js"></script>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |