snippets.partial.html 891 B

1234567891011121314151617181920212223242526272829
  1. <div class="jumbotron">
  2. <div class="container">
  3. <div class="row text-center">
  4. <h1> Code Snippets </h1>
  5. </div>
  6. <div class="col-lg-12">
  7. <div class="table-responsive">
  8. <table class="table table-bordered table-hover table-striped tablesorter">
  9. <thead>
  10. <tr>
  11. <th class="header">Code</th>
  12. <th class="header">ID</th>
  13. <th class="header">Line Numbers</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr data-ng-repeat="data in restData">
  18. <td>{{ data.code }}</td>
  19. <td>{{ data.id }}</td>
  20. <td>{{ data.linenos }}</td>
  21. </tr>
  22. </tbody>
  23. </table>
  24. </div>
  25. </div>
  26. </div>
  27. </div>