| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- Copyright 2014 The LUCI Authors. All rights reserved. | 3 <!-- Copyright 2014 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>{{app_name}} - {{page_title}}</title> | 8 <title>{{app_name}} - {{page_title}}</title> |
| 9 <link href="/third_party/bootstrap/css/bootstrap-3.1.0.min.css" rel="styleshee
t"> | 9 <link href="/third_party/bootstrap/css/bootstrap-3.1.0.min.css" rel="styleshee
t"> |
| 10 <link href="/auth/static/css/common.css" rel="stylesheet"> | 10 <link href="/auth/static/css/common.css" rel="stylesheet"> |
| 11 <script src="/auth/static/js/common.js"></script> | 11 <script src="/auth/static/js/common.js"></script> |
| 12 </head> | 12 </head> |
| 13 | 13 |
| 14 <body> | 14 <body> |
| 15 <div class="container"> | 15 <div class="container"> |
| 16 {% block content %} | 16 {% block content %} |
| 17 {% endblock %} | 17 {% endblock %} |
| 18 </div> | 18 </div> |
| 19 <script type="text/javascript"> | 19 <script type="text/javascript"> |
| 20 // Expose 'config' as global js variable. | 20 // Expose 'config' as global js variable. |
| 21 var config = {{config|safe}}; | 21 var config = {{config|safe}}; |
| 22 </script> | 22 </script> |
| 23 </body> | 23 </body> |
| 24 | 24 |
| 25 </html> | 25 </html> |
| OLD | NEW |