Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <div class="content post">
  2. <div class="post-picture">
  3. <a href="{{post.img}}">
  4. <img src="{{post.img}}" alt="">
  5. </a>
  6. </div>
  7.  
  8. <h3 class="post-title">
  9. {{post.title}}
  10. </h3>
  11.  
  12. <p class="post-content" ng-bind-html="post.body" hljs>
  13.  
  14. </p>
  15.  
  16. <p class="post-links">
  17. <span ng-show="post.github"><a href="{{post.github}}">GITHUB</a></span>
  18. <span ng-show="post.link"><a href="{{post.link}}">PLAY</a></span>
  19. </p>
  20.  
  21. <div class="post-tags">
  22. <div class="tag" ng-repeat="tag in post.tags">
  23. {{tag}}</div>
  24. </div>
  25.  
  26. <h3 ng-show="post.imgs.length > 0">More images</h3>
  27.  
  28. <p class="post-imgs">
  29. <a href="{{img}}" ng-repeat="img in post.imgs">
  30. <img ng-src="{{img}}" alt="">
  31. </a>
  32. </p>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement