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

Side by Side Diff: appengine/chrome_infra_mon_proxy/templates/base.html

Issue 928043005: Monitoring proxy for time series data (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Responded to comments Created 5 years, 8 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 lang="en"> 2 <html lang="en">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>{{ title }}</title> 5 <title>{{ title }}</title>
6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <link href="/css/bootstrap.min.css" rel="stylesheet"> 7 <link href="/css/bootstrap.min.css" rel="stylesheet">
8 <style> 8 <style>
9 body { 9 body {
10 padding-top: 10px; 10 padding-top: 10px;
11 } 11 }
12 </style> 12 </style>
13 {% block extra_head %}{% endblock %} 13 {% block extra_head %}{% endblock %}
14 </head> 14 </head>
15 15
16 <body> 16 <body>
17 {% block content %}{% endblock %} 17 {% block content %}{% endblock %}
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698