diff options
author | crupest <crupest@outlook.com> | 2019-02-15 16:08:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-15 16:08:08 +0800 |
commit | f867fb7fed885c474dda18e9a9ca7b1d64c9407f (patch) | |
tree | 9d09e39c6463c332eddb0549974db53a1d4f80fa /Timeline/ClientApp/src/app/app.component.html | |
parent | 3c140656ebe6ed34dda9356a01dbff205651e641 (diff) | |
download | timeline-f867fb7fed885c474dda18e9a9ca7b1d64c9407f.tar.gz timeline-f867fb7fed885c474dda18e9a9ca7b1d64c9407f.tar.bz2 timeline-f867fb7fed885c474dda18e9a9ca7b1d64c9407f.zip |
Develop front end.
Diffstat (limited to 'Timeline/ClientApp/src/app/app.component.html')
-rw-r--r-- | Timeline/ClientApp/src/app/app.component.html | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/Timeline/ClientApp/src/app/app.component.html b/Timeline/ClientApp/src/app/app.component.html index ae729c0c..fc2d6cfe 100644 --- a/Timeline/ClientApp/src/app/app.component.html +++ b/Timeline/ClientApp/src/app/app.component.html @@ -1,5 +1,19 @@ <body> - <div id="rootContainer"> - <router-outlet></router-outlet> + <mat-toolbar color="primary" class="mat-elevation-z4"> + <a mat-button routerLink="/">Timeline</a> + <a mat-button routerLink="/todo">TodoList</a> + <span class="fill-remaining-space"></span> + <button mat-icon-button> + <mat-icon>account_circle</mat-icon> + </button> + </mat-toolbar> + + <div> + <router-outlet></router-outlet> </div> + + <footer> + <span class="fill-remaining-space"></span> + <a class="icp-record" href="http://www.miitbeian.gov.cn/state/outPortal/loginPortal.action">鄂ICP备18030913号-1</a> + </footer> </body> |