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

Unified Diff: third_party/pkg/route_hierarchical/example/full/index.html

Issue 124053002: Adding Angular and dependent packages for testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 12 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 side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/route_hierarchical/example/full/index.html
diff --git a/third_party/pkg/route_hierarchical/example/full/index.html b/third_party/pkg/route_hierarchical/example/full/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..21d1298eff49c26e0617fb612d38e11125c39a98
--- /dev/null
+++ b/third_party/pkg/route_hierarchical/example/full/index.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Sample app</title>
+ <style>
+ body {
+ padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
+ }
+ </style>
+
+ <link rel="import" href="root-view.html">
+
+ <!-- Bootstrap -->
+ <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
+ </head>
+ <body>
+ <div class="navbar navbar-inverse navbar-fixed-top">
+ <div class="navbar-inner">
+ <div class="container">
+ <a class="brand" href="{{homeLink}}">Route Sample App</a>
+ <div class="nav-collapse collapse">
+ <ul class="nav">
+ <li class="active"><a href="{{homeLink}}">Home</a></li>
+ <li class="active"><a href="{{portfolioLink}}">Portfolio</a></li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="container">
+ <x-root-view route="{{router.root.newHandle()}}"></x-root-view>
+ </div>
+
+ <script type="application/dart" src="index.dart"></script>
+ <script src="packages/browser/dart.js"></script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698