Bootstrap Table

by Greg

HTML

<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.css">
<script src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<script src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/extensions/filter-control/bootstrap-table-filter-control.js"></script>
<table data-toggle="table"
       data-url="https://api.github.com/users/wenzhixin/repos?type=owner&sort=full_name&direction=asc&per_page=100&page=1"
       data-sort-name="stargazers_count"
       data-filter-control="true"
       data-height=500
       data-sort-order="desc">
    <thead>
    <tr>
        <th data-field="name" 
            data-sortable="true"
            data-filter-control="select">
                Name
        </th>
        <th data-field="stargazers_count" 
            data-sortable="true">
                Stars
        </th>
        <th data-field="forks_count" 
            data-sortable="true">
                Forks
        </th>
        <th data-field="description" 
            data-sortable="true">
                Description
        </th>
    </tr>
    </thead>
</table>