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

Side by Side Diff: milo/appengine/frontend/templates/includes/base.html

Issue 2748073006: Milo Refactor: Remove theme support (Closed)
Patch Set: Fix builder.html pointer Created 3 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
OLDNEW
1 {{define "buildbot"}} 1 {{define "base"}}
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3 <!-- Copyright 2015 The LUCI Authors. All rights reserved. 3 <!-- Copyright 2015 The LUCI Authors. All rights reserved.
4 Use of this source code is governed under the Apache License, Version 2.0. 4 Use of this source code is governed under the Apache License, Version 2.0.
5 that can be found in the LICENSE file. --> 5 that can be found in the LICENSE file. -->
6 <html lang="en"> 6 <html lang="en">
7 <meta charset="utf-8"> 7 <meta charset="utf-8">
8 <title>{{template "title" .}}</title> 8 <title>{{template "title" .}}</title>
9 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> 9 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css">
10 <script src="/static/common/js/time.js"></script> 10 <script src="/static/common/js/time.js"></script>
11 <script src="/static/common/third_party/js/jquery.min.js"></script> 11 <script src="/static/common/third_party/js/jquery.min.js"></script>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 (function(i,s,o,g,r,a,m){i['CrDXObject']=r;i[r]=i[r]||function(){ 44 (function(i,s,o,g,r,a,m){i['CrDXObject']=r;i[r]=i[r]||function(){
45 (i[r].q=i[r].q||[]).push(arguments)},a=s.createElement(o), 45 (i[r].q=i[r].q||[]).push(arguments)},a=s.createElement(o),
46 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m) 46 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m)
47 })(window,document,'script','https://storage.googleapis.com/crdx-feedback.ap pspot.com/feedback.js','crdx'); 47 })(window,document,'script','https://storage.googleapis.com/crdx-feedback.ap pspot.com/feedback.js','crdx');
48 48
49 crdx('setFeedbackButtonLink', 'https://bugs.chromium.org/p/chromium/issues/ent ry?cc=hinoka@chromium.org&components=Infra%3EPlatform%3EMilo'); 49 crdx('setFeedbackButtonLink', 'https://bugs.chromium.org/p/chromium/issues/ent ry?cc=hinoka@chromium.org&components=Infra%3EPlatform%3EMilo');
50 </script> 50 </script>
51 {{ .Analytics }} 51 {{ .Analytics }}
52 {{end}} 52 {{end}}
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698