| OLD | NEW |
| 1 {{- This is the template for every page on the site. | 1 {{- This is the template for every page on the site. |
| 2 - |platform| The platform. | 2 - |platform| The platform. |
| 3 - |platformTitle| The title of the platform ("Extensions" or "Apps"). | 3 - |platformTitle| The title of the platform ("Extensions" or "Apps"). |
| 4 - |content| The main content of the page. | 4 - |content| The main content of the page. |
| 5 -}} | 5 -}} |
| 6 <!DOCTYPE html> | 6 <!DOCTYPE html> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8" /> | 9 <meta charset="utf-8" /> |
| 10 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 10 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 <title>$(title) - Google Chrome</title> | 34 <title>$(title) - Google Chrome</title> |
| 35 </head> | 35 </head> |
| 36 | 36 |
| 37 <body> | 37 <body> |
| 38 <div id="gc-container"> | 38 <div id="gc-container"> |
| 39 <a href="#gc-pagecontent" class="element-invisible element-focusable">Skip t
o main content</a> | 39 <a href="#gc-pagecontent" class="element-invisible element-focusable">Skip t
o main content</a> |
| 40 | 40 |
| 41 <header id="topnav" role="banner"> | 41 <header id="topnav" role="banner"> |
| 42 <div id="logo"> | 42 <div id="logo"> |
| 43 <a href="{{base_path}}"><img src="{{static}}/images/chrome-logo_2x.png"
alt="Chrome: developer"><span>chrome</span><!-- <label>developer</label> --></a> | 43 <a href="{{base_path}}"> |
| 44 <img alt="Chrome: developer" src="{{static}}/images/chrome-logo_2x.png
"> |
| 45 </a> |
| 44 <span class="collase-icon"><!-- <img src="/static/images/burger-icon.png
" class="collase-icon">--></span> | 46 <span class="collase-icon"><!-- <img src="/static/images/burger-icon.png
" class="collase-icon">--></span> |
| 45 </div> | 47 </div> |
| 46 {{+partials.fatnav items:sidenavs.top/}} | 48 {{+partials.fatnav items:sidenavs.top/}} |
| 47 </header> | 49 </header> |
| 48 | 50 |
| 49 <main id="gc-pagecontent" role="main"> | 51 <main id="gc-pagecontent" role="main"> |
| 50 | 52 |
| 51 {{- This is unindented because it may contain whitespace-sensitive tags. -}} | 53 {{- This is unindented because it may contain whitespace-sensitive tags. -}} |
| 52 {{+content /}} | 54 {{+content /}} |
| 53 </main> | 55 </main> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 71 </div> | 73 </div> |
| 72 | 74 |
| 73 <script src="{{static}}/js/fatnav.js"></script> | 75 <script src="{{static}}/js/fatnav.js"></script> |
| 74 <script src="{{static}}/js/article.js"></script> | 76 <script src="{{static}}/js/article.js"></script> |
| 75 <script src="{{static}}/js/prettify.js"></script> | 77 <script src="{{static}}/js/prettify.js"></script> |
| 76 <script src="{{static}}/js/search.js"></script> | 78 <script src="{{static}}/js/search.js"></script> |
| 77 <script src="//www.gstatic.com/feedback/api.js"></script> | 79 <script src="//www.gstatic.com/feedback/api.js"></script> |
| 78 <script src="{{static}}/js/site.js"></script> | 80 <script src="{{static}}/js/site.js"></script> |
| 79 </body> | 81 </body> |
| 80 </html> | 82 </html> |
| OLD | NEW |