syndicate-js/todo/syntax-playground/index.html

30 lines
681 B
HTML
Raw Normal View History

2018-11-03 22:30:48 +00:00
<!doctype html>
2018-11-02 00:25:52 +00:00
<html>
2018-11-03 22:30:48 +00:00
<head>
<title>Syndicate: Table Example</title>
<meta charset="utf-8">
<script src="dist/main.js"></script>
</head>
<body>
<h1>Table Example</h1>
<table id="the-table">
<tbody>
<tr>
<th data-column="0">ID</th>
<th data-column="1">First Name</th>
<th data-column="2">Last Name</th>
<th data-column="3">Address</th>
<th data-column="4">Age</th>
</tr>
</tbody>
</table>
<p>
Click on column headings to sort data rows.
</p>
<p>
Source code: <a href="src/index.js">index.js</a>
</p>
2018-11-05 13:58:25 +00:00
<div id="extra"></div>
2018-11-03 22:30:48 +00:00
</body>
2018-11-02 00:25:52 +00:00
</html>