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.
21 lines
1.0 KiB
21 lines
1.0 KiB
<div class="component-detail container">
|
|
<div class="row">
|
|
<div class="col-11 col-md-10 col-lg-12 content mx-auto">
|
|
<button class="back icon-back" (click)="back()"></button>
|
|
<h2 class="title">{{details.title}}</h2>
|
|
<div class="text" [innerHTML]="details.content"></div>
|
|
<span class="tags" *ngIf="details.tags"><b>Tags:</b> {{details.tags}}</span>
|
|
|
|
<span class="links" *ngIf="details.exhibitions && details.exhibitions.length"><b>Exhibitions:</b>
|
|
<span class="link" *ngFor="let exhibition of details.exhibitions"
|
|
(click)="showDetails('exhibitions', exhibition.id)"
|
|
routerLink="/detail/exhibitions/{{exhibition.id}}">{{exhibition.title}} </span>
|
|
</span>
|
|
|
|
<span class="links" *ngIf="details.works && details.works.length"><b>Works:</b>
|
|
<span class="link" *ngFor="let work of details.works"
|
|
(click)="showDetails('works', work.id)"
|
|
routerLink="/detail/works/{{work.id}}">{{work.title}} </span>
|
|
</span>
|
|
</div>
|
|
</div>
|