paper.component.html (1101B)
1 <!--<div class="view intro hm-orange-light"> 2 <div class="full-bg-img flex-center"> 3 <div class="container text-center white-text wow fadeInUp"> 4 <h2>{{data.name}}</h2> 5 <br> 6 <h5>{{data.description}}</h5> 7 </div> 8 </div> 9 </div>--> 10 11 <!--Main Layout--> 12 <main> 13 14 <!--<section class="mb-5 mr-5 ml-5"> 15 <nav class="menu"> 16 <a routerLinkActive="active">Titelthemen</a> 17 <a>Fotos</a> 18 <a>Videos</a> 19 </nav> 20 </section>--> 21 22 <div class="gridPaper"> 23 <app-tweet-list [uuid]="uuid"></app-tweet-list> 24 25 <mat-card style="width: 300px;"> 26 <mat-card-header class="avatarCenter"> 27 <div class="avatarContainer"> 28 <img src="https://twitter.com/{{data.author.username}}/profile_image?size=original" class="avatar"> 29 <mat-card-title class="username"><b>{{data.author.username}}</b></mat-card-title> 30 </div> 31 </mat-card-header> 32 <mat-card-content> 33 <p *ngIf="data.description"><i class="fa fa-quote-left"></i>{{data.description}}</p> 34 </mat-card-content> 35 </mat-card> 36 </div> 37 38 </main> 39 <!--Main Layout-->