| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- Copyright 2013 The LUCI Authors. All rights reserved. | 3 <!-- Copyright 2013 The LUCI Authors. All rights reserved. |
| 4 Use of this source code is governed by the Apache v2.0 license that can be | 4 Use of this source code is governed under the Apache License, Version 2.0 |
| 5 found in the LICENSE file. --> | 5 that can be found in the LICENSE file. --> |
| 6 <head> | 6 <head> |
| 7 <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> | 7 <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> |
| 8 <title>{{ title or "Isolate Server" }}</title> | 8 <title>{{ title or "Isolate Server" }}</title> |
| 9 <link rel="stylesheet" type="text/css" href="/default.css"/> | 9 <link rel="stylesheet" type="text/css" href="/default.css"/> |
| 10 | 10 |
| 11 <style> | 11 <style> |
| 12 .top_right_links { | 12 .top_right_links { |
| 13 display: inline-block; | 13 display: inline-block; |
| 14 float: right; | 14 float: right; |
| 15 } | 15 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement
(o), | 61 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement
(o), |
| 62 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore
(a,m) | 62 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore
(a,m) |
| 63 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'
); | 63 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'
); |
| 64 | 64 |
| 65 ga('create', '{{google_analytics}}', {'siteSpeedSampleRate': 100}); | 65 ga('create', '{{google_analytics}}', {'siteSpeedSampleRate': 100}); |
| 66 ga('send', 'pageview'); | 66 ga('send', 'pageview'); |
| 67 </script> | 67 </script> |
| 68 {% endif %} | 68 {% endif %} |
| 69 </body> | 69 </body> |
| 70 </html> | 70 </html> |
| OLD | NEW |