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

Unified Diff: milo/frontend/templates/includes/base.html

Issue 2953183002: Fix milo deployment (Closed)
Patch Set: License header fix Created 3 years, 6 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
« no previous file with comments | « milo/frontend/templates ('k') | milo/frontend/templates/pages/build.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/frontend/templates/includes/base.html
diff --git a/milo/frontend/templates/includes/base.html b/milo/frontend/templates/includes/base.html
deleted file mode 100644
index c69c6c35cf64ce20568b7d1a6f0c3158b96238c1..0000000000000000000000000000000000000000
--- a/milo/frontend/templates/includes/base.html
+++ /dev/null
@@ -1,62 +0,0 @@
-{{define "base"}}
-<!DOCTYPE html>
-<!-- Copyright 2015 The LUCI Authors. All rights reserved.
-Use of this source code is governed under the Apache License, Version 2.0.
-that can be found in the LICENSE file. -->
-<html lang="en">
-<meta charset="utf-8">
-<title>{{template "title" .}}</title>
-<link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css">
-<link rel="stylesheet" href="/static/common/third_party/css/jquery-ui.min.css" type="text/css">
-<script src="/static/common/third_party/js/moment-with-locales.min.js"></script>
-<script src="/static/common/third_party/js/moment-timezone-with-data-2012-2022.min.js"></script>
-<script src="/static/common/js/time.js"></script>
-<script src="/static/common/third_party/js/jquery.min.js"></script>
-<script src="/static/common/third_party/js/jquery-ui.min.js"></script>
-{{template "head" . }}
-
-<body class="interface">
- <header>
- Luci
- <div>
- {{ if .IsAnonymous }}
- <a href="{{.LoginURL}}">login</a>
- {{ else }}
- {{ if .User.Picture }}
- <img class="account-picture" src="{{.User.Picture}}">
- {{ end }}
- {{ .User.Email }} |
- <a href="{{.LogoutURL}}">logout</a>
- {{ end }}
- </div>
- </header>
- <hr>
- {{template "body" .}}
- <footer>
- <hr>
- <a href="https://github.com/luci">luci</a>,
- working for the <a href="https://chromium.org/">Chromium</a> project.<br>
- Page built: <b>{{.CurrentTime | localTime "" }}</b>
- </footer>
-<script>
-(function () {
- 'use strict';
- milo.makeTimesLocal();
- milo.annotateDurations();
- $(document).tooltip({
- show: false,
- hide: false
- });
-})();
-</script>
-<script>
- (function(i,s,o,g,r,a,m){i['CrDXObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','https://storage.googleapis.com/crdx-feedback.appspot.com/feedback.js','crdx');
-
- crdx('setFeedbackButtonLink', 'https://bugs.chromium.org/p/chromium/issues/entry?cc=hinoka@chromium.org&components=Infra%3EPlatform%3EMilo');
-</script>
-{{ .Analytics }}
-{{end}}
-</html>
« no previous file with comments | « milo/frontend/templates ('k') | milo/frontend/templates/pages/build.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698