OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="nav_bar.html"> | |
3 | |
4 | 2 |
5 <polymer-element name="general-error"> | 3 <polymer-element name="general-error"> |
6 <template> | 4 <template> |
7 <link rel="stylesheet" href="css/shared.css"> | 5 <link rel="stylesheet" href="css/shared.css"> |
8 <nav-bar> | 6 <nav-bar> |
9 <top-nav-menu last="{{ true }}"></top-nav-menu> | 7 <top-nav-menu last="{{ true }}"></top-nav-menu> |
10 <nav-notify notifications="{{ app.notifications }}"></nav-notify> | 8 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
11 </nav-bar> | 9 </nav-bar> |
12 <div class="content-centered"> | 10 <div class="content-centered"> |
13 <h1>Error</h1> | 11 <h1>Error</h1> |
14 <br> | 12 <br> |
15 <div class="well">{{ message }}</div> | 13 <div class="well">{{ message }}</div> |
16 </div> | 14 </div> |
17 </template> | 15 </template> |
18 </polymer-element> | 16 </polymer-element> |
19 | 17 |
20 <script type="application/dart" src="general_error.dart"></script> | 18 <script type="application/dart" src="general_error.dart"></script> |
OLD | NEW |