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.

22 lines
810 B

  1. <div class="card">
  2. <div class="card-body">
  3. <a ng-href="#!/user/{{user.id}}" class="row">
  4. <div class="col-sm-3">
  5. <img class="o_userImgCircular" ng-src="https://www.eyerys.com/sites/default/files/mark_zuckerberg.jpg" />
  6. </div>
  7. <div class="col-sm-8">
  8. <b>{{user.name}} {{user.lastname}}</b>
  9. <div class="mb-2 text-muted">@{{user.username}}</div>
  10. </div>
  11. </a>
  12. </div>
  13. <a ng-href="#!/post/{{post.id}}" class="card-body">
  14. <h5 class="card-title">{{post.title}}</h5>
  15. <h6 class="card-subtitle mb-2 text-muted">{{post.subtitle}}</h6>
  16. <img ng-src="{{post.img}}" class="img-fluid" />
  17. <p class="card-text">{{post.content}}</p>
  18. <div class="pull-right">
  19. <i title="Server" class="fa fa-heart ct_red300 fa-1x"></i> 37
  20. </div>
  21. </a>
  22. </div>