mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
+ Updated Angular, Angular Material and Flex Layout + Updated various components for better Angular5 support + Fixed: Contacts app various issues + Fixed: Duplicate content in Profile page tabs + Fixed: Folded status of the Navbar shouldn't brake the layout if Horizontal Navbar is active
17 lines
582 B
HTML
17 lines
582 B
HTML
<div id="photos-videos" class="p-24">
|
|
<div class="period" *ngFor="let period of photosVideos">
|
|
|
|
<div class="period-title">
|
|
<span class="name">{{period.name}}</span>
|
|
<span class="info">{{period.info}}</span>
|
|
</div>
|
|
|
|
<div class="period-media" fxLayout="row" fxLayoutWrap>
|
|
<div class="media" *ngFor="let media of period.media">
|
|
<img class="preview" [src]="media.preview" title="{{media.title}}">
|
|
<div class="title">{{media.title}}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|