38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<div [class]="themeService.getClassTheme()">
|
|
<div class="myContainer">
|
|
|
|
<!-- Navbar -->
|
|
<div style="margin-bottom: 50px">
|
|
<app-nav-bar pour="user"></app-nav-bar>
|
|
</div>
|
|
|
|
<!-- --------------------------------------------------------------------- -->
|
|
|
|
<!-- [liste des videos] + [liste des playlist] + [pub] -->
|
|
<mat-grid-list cols="10" rowHeight="85vh">
|
|
|
|
<!-- liste des videos -->
|
|
<mat-grid-tile colspan="4" rowspan="1" class="celluleListeVideo">
|
|
<div class="videoListContainer">
|
|
<app-video-list [playlist]="playlist"></app-video-list>
|
|
</div>
|
|
</mat-grid-tile>
|
|
|
|
<!-- liste des playlist -->
|
|
<mat-grid-tile colspan="4" rowspan="1" class="celluleListePlaylist">
|
|
<div class="playlistListContainer">
|
|
<app-playlist-list [allPlaylists]="allPlaylists" (eventEmitter)="transmitToVideoList($event)"></app-playlist-list>
|
|
</div>
|
|
</mat-grid-tile>
|
|
|
|
<!-- pub -->
|
|
<mat-grid-tile colspan="2" rowspan="1" class="cellulePub">
|
|
<div class="conteneurPub">
|
|
<app-advert [ad]="ad"></app-advert>
|
|
</div>
|
|
</mat-grid-tile>
|
|
|
|
</mat-grid-list>
|
|
|
|
</div>
|
|
</div>
|