| OLD | NEW |
| 1 {%- block doctype -%} | 1 {%- block doctype -%} |
| 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 4 {% endblock %} | 4 {% endblock %} |
| 5 <html xmlns="http://www.w3.org/1999/xhtml"> | 5 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 6 <head> | 6 <head> |
| 7 {% block head %} | 7 {% block head %} |
| 8 <link rel="shortcut icon" href="favicon.ico"> | 8 <link rel="shortcut icon" href="favicon.ico"> |
| 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 10 {% if metatags %} | 10 {% if metatags %} |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 <a href="{{ path_to_root }}console">Console</a> | 28 <a href="{{ path_to_root }}console">Console</a> |
| 29 <a href="{{ path_to_root }}builders">Builders</a> | 29 <a href="{{ path_to_root }}builders">Builders</a> |
| 30 <a href="{{ path_to_root }}one_line_per_build">Recent Builds</a> | 30 <a href="{{ path_to_root }}one_line_per_build">Recent Builds</a> |
| 31 <a href="{{ path_to_root }}buildslaves">Buildslaves</a> | 31 <a href="{{ path_to_root }}buildslaves">Buildslaves</a> |
| 32 <a href="{{ path_to_root }}changes">Changesources</a> | 32 <a href="{{ path_to_root }}changes">Changesources</a> |
| 33 - <a href="{{ path_to_root }}json/help">JSON API</a> | 33 - <a href="{{ path_to_root }}json/help">JSON API</a> |
| 34 - <a href="{{ path_to_root }}about">About</a> | 34 - <a href="{{ path_to_root }}about">About</a> |
| 35 </div> | 35 </div> |
| 36 {% endblock %} | 36 {% endblock %} |
| 37 | 37 |
| 38 {% include "waterfall-state.html" %} |
| 39 |
| 38 {%- block barecontent -%} | 40 {%- block barecontent -%} |
| 39 <hr/> | 41 <hr/> |
| 40 | 42 |
| 41 <div class="content"> | 43 <div class="content"> |
| 42 {%- block content -%} | 44 {%- block content -%} |
| 43 {%- endblock -%} | 45 {%- endblock -%} |
| 44 </div> | 46 </div> |
| 45 {%- endblock -%} | 47 {%- endblock -%} |
| 46 | 48 |
| 47 {%- block footer -%} | 49 {%- block footer -%} |
| (...skipping 18 matching lines...) Expand all Loading... |
| 66 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement
(o), | 68 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement
(o), |
| 67 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore
(a,m) | 69 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore
(a,m) |
| 68 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'
); | 70 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'
); |
| 69 | 71 |
| 70 ga('create', 'UA-55762617-2', {'siteSpeedSampleRate': 100}); | 72 ga('create', 'UA-55762617-2', {'siteSpeedSampleRate': 100}); |
| 71 ga('send', 'pageview'); | 73 ga('send', 'pageview'); |
| 72 | 74 |
| 73 </script> | 75 </script> |
| 74 </body> | 76 </body> |
| 75 </html> | 77 </html> |
| OLD | NEW |