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.

25 lines
913 B

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