Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <div class="container" [ngClass]="{'show': show}" *ngIf="obs$ | async as post" >
  2. <h2>{{post.title}}</h2>
  3. <h3>{{post.description}}</h3>
  4. <p class="published" *ngIf="post.link as link">
  5. Originally published at:
  6. <a target="_blank" rel="noopener noreferrer" [href]="link">{{link | truncate}}</a>
  7. </p>
  8. <div [innerHtml]="post.body | mdToHtml"></div>
  9. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement