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.
|
- <ion-content *ngIf="newsDetails">
- <header class="topbar">
- <button (click)="back()" class="close-article-button active">
- <ion-icon name="close"></ion-icon>
- </button>
- </header>
-
- <div class="image-holder">
- <figure *ngIf="!newsDetails.images">
- <img [src]="image_url + newsDetails.image_path + newsDetails.image_file_name">
- </figure>
-
- <figure *ngIf="newsDetails.images">
- <img [src]="image_url + newsDetails.images[0].data.imagePath + newsDetails.images[0].data.imageName">
- </figure>
-
- <a *ngIf="newsDetails.hls_url" [href]="newsDetails.hls_url" target="_blank">
- <button>
- <ion-icon name="play"></ion-icon>
- </button>
- </a>
-
- <h4> {{ newsDetails.title }} </h4>
- </div>
-
- <section class="content">
- <div class="details" *ngIf="newsDetails.full_text || newsDetails.desc" [innerHtml]="transformYourHtml(newsDetails.full_text ? newsDetails.full_text : newsDetails.desc)">
- </div>
-
- <ng-container *ngIf="newsDetails.images">
- <figure *ngFor="let image of newsDetails.images">
- <img [src]="image_url + getLowRestImagePath(image.data.imagePath) + image.data.imageName">
- </figure>
- </ng-container>
-
- </section>
-
- <ion-fab vertical="bottom" horizontal="start" slot="fixed">
- <ion-fab-button class="share-button">
- <ion-icon name="share-social-outline"></ion-icon>
- </ion-fab-button>
- </ion-fab>
- </ion-content>
|