Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: appengine/components/components/auth/ui/templates/base_minimal.html

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Fixed third parties Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW
« no previous file with comments | « appengine/components/components/auth/ui/templates/base.html ('k') | appengine/components/components/auth/ui/ui.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698