Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: third_party/pkg/route_hierarchical/example/full/index.html

Issue 176943008: Update the Angular/DI tests to latest from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <meta charset="utf-8">
6 <title>Sample app</title>
7 <style>
8 body {
9 padding-top: 60px; /* 60px to make the container go all the way to the b ottom of the topbar */
10 }
11 </style>
12
13 <link rel="import" href="root-view.html">
14
15 <!-- Bootstrap -->
16 <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
17 </head>
18 <body>
19 <div class="navbar navbar-inverse navbar-fixed-top">
20 <div class="navbar-inner">
21 <div class="container">
22 <a class="brand" href="{{homeLink}}">Route Sample App</a>
23 <div class="nav-collapse collapse">
24 <ul class="nav">
25 <li class="active"><a href="{{homeLink}}">Home</a></li>
26 <li class="active"><a href="{{portfolioLink}}">Portfolio</a></li>
27 </ul>
28 </div>
29 </div>
30 </div>
31 </div>
32
33 <div class="container">
34 <x-root-view route="{{router.root.newHandle()}}"></x-root-view>
35 </div>
36
37 <script type="application/dart" src="index.dart"></script>
38 <script src="packages/browser/dart.js"></script>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698