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

Unified Diff: gm/rebaseline_server/static/new/new-index.html

Issue 538613002: Refactored frontend for the rebaseline server. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixed typos and small issues Created 6 years, 3 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: gm/rebaseline_server/static/new/new-index.html
diff --git a/gm/rebaseline_server/static/new/new-index.html b/gm/rebaseline_server/static/new/new-index.html
new file mode 100644
index 0000000000000000000000000000000000000000..b7067f19dd04a30a127dc3fecc6ea823968e2ac9
--- /dev/null
+++ b/gm/rebaseline_server/static/new/new-index.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html lang="en" ng-app="rbtApp">
+
+<head>
+ <meta name="viewport" content="width=device-width">
+ <meta charset="utf-8">
+ <title>Rebaseline Tool</title>
+ <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
+ <link rel="stylesheet" href="css/app.css">
+</head>
+<body>
+
+
+ <div class="container-fluid">
+ <div class="pull-right">
+ Instructions, roadmap, etc. are at <a href="http://goo.gl/CqeVHq" target="_blank">http://goo.gl/CqeVHq</a>
+ </div>
+ </div>
+
+ <!-- Include the different views here.
+ Make everything fluid to scale to the maximum size of any screen. -->
+ <div class="container-fluid">
+ <div ng-view></div>
+ </div>
+
+ <!-- do everything local right now: Move to CDN fix when it's a performance issue -->
+ <script src="bower_components/angular/angular.js"></script>
+ <script src="bower_components/angular-route/angular-route.js"></script>
+
+ <!-- Local includes external libs -->
+ <script src="bower_components/angular-bootstrap/ui-bootstrap.js"></script>
+ <script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
+
+ <!-- Local JS -->
+ <script src="js/app.js"></script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698