-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashboard.html
More file actions
20 lines (20 loc) · 1.09 KB
/
dashboard.html
File metadata and controls
20 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="tl-logo">
<img src="img/logo.svg" alt="Links Logo">
</div>
<div class="tl-welcome-msg">Hello, {{username}}</div>
<material-button *ngIf="isAdmin" dense class="tl-admin-button" (trigger)="gotoAdmin()">Modify Tutorials</material-button>
<material-button dense class="tl-logout-button" (trigger)="logout()">Log out</material-button>
<div class="tl-dashboard-interactive">
<h3 class="tl-dashboard-content-header">Interactive Mode</h3>
<p class="tl-dashboard-content-desc">
You can play with Links language and get familiar with the syntax through our Interactive Links Shell.
</p>
<material-button class="tl-nav-button" dense raised (trigger)="gotoInteractivePage()">REPL</material-button>
</div>
<div class="tl-dashboard-tutorial">
<h3 class="tl-dashboard-content-header">Tutorials</h3>
<p class="tl-dashboard-content-desc">
We also have a short series of tutorials which teach you how to use Links for web programming. Take a tour!
</p>
<material-button class="tl-nav-button" dense raised (trigger)="gotoTutorialPage()">Tutorials</material-button>
</div>