1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/gallery.component.html
2016-04-22 13:23:44 +02:00

38 lines
1.4 KiB
HTML

<md-sidenav-container layout="row">
<md-sidenav name="menu" align="left" layout="column">
<md-toolbar class="md-theme-light">
<h1 class="md-toolbar-tools">PiGallery2</h1>
</md-toolbar>
<md-content layout-padding>
<button md-raised-button (click)="close('menu')" class="md-primary">
Close Sidenav Right
</button>
</md-content>
</md-sidenav>
<md-content flex>
<div layout="column" style="height: 100vh; overflow-y: hidden;">
<md-toolbar mdScrollShrink>
<div class="md-toolbar-tools">
<button md-button class="md-icon-button md-primary" aria-label="Settings" (click)="showSideNav()">
<i md-icon>more_vert</i>
</button>
<h3>
<span>PiGallery2</span>
</h3>
<span flex></span>
</div>
</md-toolbar>
<md-content flex id="content">
<div *ngIf="currentDirectory" *ngFor="#directory of currentDirectory.directories">
<gallery-directory *ngIf="directory" [directory]="directory"></gallery-directory>
</div>
<gallery-grid [directory]="currentDirectory"></gallery-grid>
</md-content>
</div>
</md-content>
</md-sidenav-container>