| OLD | NEW |
| 1 {{define "buildbot"}} | 1 {{define "buildbot"}} |
| 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 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
| 7 <title>{{template "title" .}}</title> | 7 <title>{{template "title" .}}</title> |
| 8 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> | 8 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> |
| 9 <script src="/static/common/js/time.js"></script> | 9 <script src="/static/common/js/time.js"></script> |
| 10 <script src="/static/common/third_party/js/jquery.min.js"></script> | 10 <script src="/static/common/third_party/js/jquery.min.js"></script> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 <a href="https://github.com/luci">luci</a>, | 21 <a href="https://github.com/luci">luci</a>, |
| 22 working for the <a href="https://chromium.org/">Chromium</a> project.<br> | 22 working for the <a href="https://chromium.org/">Chromium</a> project.<br> |
| 23 Page built: <b>{{.CurrentTime | localTime "" }}</b> (All times local) | 23 Page built: <b>{{.CurrentTime | localTime "" }}</b> (All times local) |
| 24 </footer> | 24 </footer> |
| 25 <script> | 25 <script> |
| 26 (function () { | 26 (function () { |
| 27 'use strict'; | 27 'use strict'; |
| 28 milo.makeTimesLocal(); | 28 milo.makeTimesLocal(); |
| 29 })(); | 29 })(); |
| 30 </script> | 30 </script> |
| 31 {{ .Analytics }} |
| 31 {{end}} | 32 {{end}} |
| OLD | NEW |