| 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 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 <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 <meta name="viewport" content="width=device-width, initial-scale=1.0"> | 8 <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 9 <title>{{ title or "Isolate Server" }}</title> | 9 <title>{{ title or "Isolate Server" }}</title> |
| 10 | 10 |
| 11 <link rel="stylesheet" type="text/css" href="/default.css"/> | 11 <link rel="stylesheet" type="text/css" href="/default.css"/> |
| 12 <link href="/third_party/bootstrap/css/bootstrap-3.1.0.min.css" rel="styleshee
t"> | 12 <link href="/third_party/bootstrap/css/bootstrap-3.1.0.min.css" rel="styleshee
t"> |
| 13 | 13 |
| 14 <script src="/third_party/jquery/jquery-1.11.0.min.js"> | 14 <script src="/third_party/jquery/jquery-1.11.0.min.js"> |
| 15 </script> | 15 </script> |
| 16 <script src="/third_party/bootstrap/js/bootstrap-3.1.0.min.js"> | 16 <script src="/third_party/bootstrap/js/bootstrap-3.1.0.min.js"> |
| 17 </script> | 17 </script> |
| 18 | 18 |
| 19 <style> | 19 <style> |
| 20 .top_right_links { | 20 .top_right_links { |
| 21 display: inline-block; | 21 display: inline-block; |
| 22 float: right; | 22 float: right; |
| 23 } | 23 } |
| 24 </style> | 24 </style> |
| 25 {% block headers %} | 25 {% block headers %} |
| 26 {# Page specific headers goes there. #} | 26 {# Page specific headers goes there. #} |
| 27 {% endblock %} | 27 {% endblock %} |
| 28 </head> | 28 </head> |
| 29 <body {% if onload is defined %}onload="{{onload}}"{% endif %}> | 29 <body {% if onload is defined %}onload="{{onload}}"{% endif %}> |
| 30 <div class="container" style="margin-top: 20px;"> | 30 <div class="container-fluid" style="margin-top: 20px;"> |
| 31 <div class="top_right_links" style="padding-right: 10px;"> | 31 <div class="top_right_links" style="padding-right: 10px;"> |
| 32 <a href="{{signin_link|safe }}">{{nickname}}</a><br> | 32 <a href="{{signin_link|safe }}">{{nickname}}</a><br> |
| 33 {{now|datetimeformat}}<br> | 33 {{now|datetimeformat}}<br> |
| 34 {% block floating %} | 34 {% block floating %} |
| 35 {% endblock %} | 35 {% endblock %} |
| 36 </div> | 36 </div> |
| 37 <div id="main-content-pane"> | 37 <div id="main-content-pane"> |
| 38 {% block body %} | 38 {% block body %} |
| 39 {% endblock %} | 39 {% endblock %} |
| 40 </div> | 40 </div> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 64 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement
(o), | 64 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement
(o), |
| 65 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore
(a,m) | 65 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore
(a,m) |
| 66 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'
); | 66 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'
); |
| 67 | 67 |
| 68 ga('create', '{{google_analytics}}', {'siteSpeedSampleRate': 100}); | 68 ga('create', '{{google_analytics}}', {'siteSpeedSampleRate': 100}); |
| 69 ga('send', 'pageview'); | 69 ga('send', 'pageview'); |
| 70 </script> | 70 </script> |
| 71 {% endif %} | 71 {% endif %} |
| 72 </body> | 72 </body> |
| 73 </html> | 73 </html> |
| OLD | NEW |