| OLD | NEW |
| 1 | 1 |
| 2 <!DOCTYPE html> | 2 <!DOCTYPE html> |
| 3 | 3 |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>Settings</title> | 5 <title>Settings</title> |
| 6 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> | 6 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> |
| 7 <script src="/static/common/js/time.js"></script> | 7 <script src="/static/common/js/time.js"></script> |
| 8 | 8 |
| 9 | 9 |
| 10 <body class="interface"> | 10 <body class="interface"> |
| 11 <header> | 11 <header> |
| 12 Luci | 12 Luci |
| 13 <a href="/settings">settings</a> | |
| 14 </header> | 13 </header> |
| 15 <hr> | 14 <hr> |
| 16 | 15 |
| 17 <div class="header"> | 16 <div class="header"> |
| 18 <a href=""></a> | 17 <a href=""></a> |
| 19 </div> | 18 </div> |
| 20 <div class="content"> | 19 <div class="content"> |
| 21 <h1>Build </h1> | 20 <h1>Build </h1> |
| 22 | 21 |
| 23 <div class="column"> | 22 <div class="column"> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 47 Page built: <b><span id="current-time">0001-02-03 04:05:06.000000007 +00
00 UTC</span></b> | 46 Page built: <b><span id="current-time">0001-02-03 04:05:06.000000007 +00
00 UTC</span></b> |
| 48 </footer> | 47 </footer> |
| 49 | 48 |
| 50 <script> | 49 <script> |
| 51 (function () { | 50 (function () { |
| 52 'use strict'; | 51 'use strict'; |
| 53 document.getElementById('current-time').textContent = milo.formatDate( | 52 document.getElementById('current-time').textContent = milo.formatDate( |
| 54 '0001-02-03 04:05:06.000000007 \x2b0000 UTC'); | 53 '0001-02-03 04:05:06.000000007 \x2b0000 UTC'); |
| 55 })(); | 54 })(); |
| 56 </script> | 55 </script> |
| OLD | NEW |