1 {{- This is the template for every page on the site. 2 - |platform| The platform. 3 - |platformTitle| The title of the platform ("Extensions" or "Apps"). 4 - |content| The main content of the page. 5 -}} 6 <!DOCTYPE html> 7 <html> 8 <head> 9 <meta charset="utf-8" /> 10 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 12 <meta name="HandheldFriendly" content="True"> 13 <meta name="MobileOptimized" content="320"> 14 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 15 <meta http-equiv="cleartype" content="on"> 16 <link type="image/ico" rel="icon" href="//www.google.com/images/icons/product/chrome-32.png"> 17 18 <link href="{{static}}/css/out/site.css" rel="stylesheet" type="text/css"> 19 <link href="{{static}}/css/print.css" rel="stylesheet" type="text/css" media="print"> 20 <link href="{{static}}/css/prettify.css" rel="stylesheet" type="text/css"> 21 <link href='//fonts.googleapis.com/css?family=Open+Sans:400,700|Source+Code+Pro' rel='stylesheet' type='text/css'> 22 23 <script> 24 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 25 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), 26 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) 27 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); 28 29 ga('create', 'UA-41980257-1'); 30 ga('create', 'UA-49880327-5', {'name': 'chromeDocs'}); 31 ga('send', 'pageview'); 32 ga('chromeDocs.send', 'pageview'); 33 34 </script> 35 36 <title>$(title) - Google Chrome</title> 37 </head> 38 39 <body> 40 <div id="gc-container"> 41 <a href="#gc-pagecontent" class="element-invisible element-focusable">Skip to main content</a> 42 43 <header id="topnav" role="banner"> 44 <div id="logo"> 45 <a href="{{base_path}}"> 46 <img alt="Chrome: developer" src="{{static}}/images/chrome-logo_2x.png"> 47 </a> 48 <span class="collase-icon"><!-- <img src="/static/images/burger-icon.png" class="collase-icon">--></span> 49 </div> 50 {{+partials.fatnav items:sidenavs.top/}} 51 </header> 52 53 <main id="gc-pagecontent" role="main"> 54 55 {{- This is unindented because it may contain whitespace-sensitive tags. -}} 56 {{+content /}} 57 </main> 58 59 <footer id="gc-footer" role="contentinfo" class="span-full"> 60 <div class="g-section g-tpl-50-50"> 61 <div class="g-unit g-first"> 62 <nav class="links"> 63 <a href="https://www.google.com/">Google</a><a href="https://developers.google.com/site-terms">Terms of Service</a><a href="http://www.google.com/intl/en/privacy/">Privacy Policy</a><a href="" data-feedback>Report a bug</a> 64 </nav> 65 </div> 66 <div class="g-unit g-last"> 67 <div id="social-buttons"> 68 <div data-size="small" data-href="http://www.google.com/chrome" data-annotation="bubble" class="g-plusone"></div> 69 <a rel="publisher" target="_blank" href="https://plus.google.com/+GoogleChromeDevelopers?prsrc=3" data-g-label="plus" data-g-event="nav-subfooter">Add us on <span class="element-invisible">Google+</span><img src="//ssl.gstatic.com/images/icons/gplus-16.png" data-g-label="plus" data-g-event="nav-subfooter" alt=""></a> 70 </div> 71 </div> 72 </div> 73 </footer> 74 75 </div> 76 77 <script src="{{static}}/js/fatnav.js"></script> 78 <script src="{{static}}/js/article.js"></script> 79 <script src="{{static}}/js/prettify.js"></script> 80 <script src="{{static}}/js/search.js"></script> 81 <script src="//www.gstatic.com/feedback/api.js"></script> 82 <script src="{{static}}/js/site.js"></script> 83 </body> 84 </html> 85