You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.6 KiB

6 years ago
  1. <div class="container">
  2. <div class="row">
  3. <div class="col-sm-4">
  4. <div ng-repeat="post in posts | orderBy: '-date'" ng-if="$index % 3 == 0">
  5. <a ng-href="#!/post/{{post.id}}">
  6. <div ng-include="'views/templates/post-thumb-template.html'"></div>
  7. </a>
  8. <br>
  9. </div>
  10. </div>
  11. <div class="col-sm-4">
  12. <div ng-repeat="post in posts | orderBy: '-date'" ng-if="$index % 3 == 1">
  13. <a ng-href="#!/post/{{post.id}}">
  14. <div ng-include="'views/templates/post-thumb-template.html'"></div>
  15. </a>
  16. <br>
  17. </div>
  18. </div>
  19. <div class="col-sm-4">
  20. <div ng-repeat="post in posts | orderBy: '-date'" ng-if="$index % 3 == 2">
  21. <a ng-href="#!/post/{{post.id}}">
  22. <div ng-include="'views/templates/post-thumb-template.html'"></div>
  23. </a>
  24. <br>
  25. </div>
  26. </div>
  27. </div>
  28. <!--<div class="row">
  29. <div class="col-sm-3">
  30. <div class="card" style="width: 18rem;">
  31. <a ng-href="#!/user">
  32. <img class="card-img-top" ng-src="http://localhost:8080/ipfs/QmUE6hhNsyUA5emj2dviVDNYK7mSbPeZmRKeCYthmtemeA" alt="Card image cap">
  33. </a>
  34. <div class="card-body">
  35. <h5 class="card-title">Post1</h5>
  36. <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
  37. <a href="#" class="btn btn-primary">Go somewhere</a>
  38. </div>
  39. </div>
  40. </div>
  41. </div>-->
  42. </div>