Merge "TemplateResolutionService default #occurrence 0->1"
[ccsdk/cds.git] / cds-ui / client / src / app / common / shared / components / home / home.component.html
1 <!-- ============LICENSE_START==========================================
2 ===================================================================
3 Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
4 ===================================================================
5
6 Unless otherwise specified, all software contained herein is licensed
7 under the Apache License, Version 2.0 (the License);
8 you may not use this software except in compliance with the License.
9 You may obtain a copy of the License at
10
11     http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END============================================ 
19 -->
20 <!-- <mat-toolbar color="warn">
21   <mat-toolbar-row>
22     <button type="button" aria-label="Toggle sidenav" mat-icon-button (click)="drawer.toggle()" color="primary">
23       <mat-icon aria-label="Side nav toggle icon">menu</mat-icon>
24     </button>
25     <span>MY Image</span>
26   </mat-toolbar-row>
27 </mat-toolbar> -->
28 <mat-toolbar color="primary">
29     <mat-toolbar-row>
30         <!-- <button type="button" aria-label="Toggle sidenav" mat-icon-button (click)="drawer.toggle()" color="primary"> -->
31         <a class="menuBar" (click)="drawer.toggle()">&#9776;</a>
32         <!-- </button> -->
33         <span class="title">Controller Blueprint Design Studio</span>
34     </mat-toolbar-row>
35 </mat-toolbar>
36 <mat-sidenav-container class="example-container">
37     <mat-sidenav #drawer mode="side" [(opened)]="opened" (opened)="events.push('open!')" (closed)="events.push('close!')">
38         <mat-toolbar color="" primary>Menu</mat-toolbar>
39         <mat-nav-list>
40             <a mat-list-item [routerLink]="['/blueprint']">Controller Blueprint</a>
41             <!-- <nav class="ng-tns-c12-2 ng-star-inserted"> -->
42             <!-- <button class="docs-nav-content-btn" cdkaccordionitem="" expanded="true"
43           aria-label="Form Controls, section toggle" aria-controls="panel-forms" aria-expanded="false">-->
44             <!-- <label>Controller Blueprint</label> -->
45             <!-- <mat-icon class="mat-icon notranslate material-icons mat-icon-no-color" role="img" aria-hidden="true">
46             keyboard_arrow_down</mat-icon></button> -->
47             <!-- <ul>
48                     <a mat-list-item [routerLink]="['/blueprint']">Create Blueprint</a>
49                     <a mat-list-item [routerLink]="['/']">Search Blueprint</a>
50                 </ul>
51             </nav> -->
52             <a mat-list-item [routerLink]="['/resource-definition']">Resource Definition</a>
53         </mat-nav-list>
54     </mat-sidenav>
55
56     <mat-sidenav-content (click)="drawer.close()">
57         <router-outlet></router-outlet>
58     </mat-sidenav-content>
59 </mat-sidenav-container>