steamSales.partial.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!-- Main jumbotron for a primary marketing message or call to action -->
  2. <div class="jumbotron">
  3. <div class="container">
  4. <div class="row text-center">
  5. <h1> Latest Steam Sale Data </h1>
  6. </div>
  7. <div class="col-lg-12">
  8. <div class="table-responsive">
  9. <table class="table table-bordered table-hover table-striped tablesorter">
  10. <thead>
  11. <tr>
  12. <th class="header">Name</th>
  13. <th class="header">Release Date</th>
  14. <th class="header">Discount</th>
  15. <th class="header">Price</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <tr data-ng-repeat="data in steamSales.data ">
  20. <td>{{ data.name }}</td>
  21. <td>{{ data.releaseDates }}</td>
  22. <td>{{ data.discount }} </td>
  23. <td>{{ data.price }}</td>
  24. </tr>
  25. </tbody>
  26. </table>
  27. </div>
  28. </div>
  29. </div>
  30. </div>