snippets.partial.html 734 B

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