| <!DOCTYPE html> |
| <html> |
| {%- if redirect %} |
| <head> |
| <meta http-equiv="Refresh" content="0; url='{{redirect}}'" /> |
| </head> |
| {%- else %} |
| <head> |
| {%- if title %} |
| <title>{{ title }}</title> |
| {%- endif %} |
| <link rel="stylesheet" type="text/css" href="/_stylesheets/default.css" /> |
| </head> |
| <body> |
| <header> |
| <div id="header-left"> |
| <a href="/" id="userheader-logo"> |
| <img src="/customLogo.png" alt="The Chromium Projects" id="sites-logo" /> |
| </a> |
| <h2><a href="/">The Chromium Projects</a></h2> |
| </div> |
| <form id="searchbox-form" action="/search" role="search"> |
| <input type="text" name="q" value="" aria-label="Search this site"> |
| <div role="button" id="searchbox-search-button" tabindex="0"> |
| Search this site |
| </div> |
| </form> |
| </header> |
| <div id="main-wrapper"> |
| <nav id="sidebar-left"> |
| <div> |
| <ul role="navigation"> |
| {%- if page_name == "chromium-projects" %} |
| <li class="selected">Home |
| {%- else %} |
| <li><a href="/">Home</a> |
| {%- endif %} |
| {%- if page_name == "Home" %} |
| <li class="selected">Chromium |
| {%- else %} |
| <li><a href="/Home">Chromium</a> |
| {%- endif %} |
| {%- if page_name == "chromium-os" %} |
| <li class="selected">Chromium OS |
| {%- else %} |
| <li><a href="/chromium-os">Chromium OS</a> |
| {%- endif %} |
| </ul> |
| </div> |
| <div> |
| <h4>Quick links</h4> |
| <ul role="navigation"> |
| <li><a href="/for-testers/bug-reporting-guidelines">Report bugs</a> |
| <li><a href="/developers/discussion-groups">Discuss</a> |
| <li><a href="/sitemap">Sitemap</a> |
| </li> |
| </ul> |
| </div> |
| <div> |
| <h4>Other sites</h4> |
| <ul role="navigation"> |
| <li><a href="https://blog.chromium.org/">Chromium Blog</a> |
| <li><a href="https://developer.chrome.com/extensions">Google Chrome Extensions</a> |
| </ul> |
| </div> |
| <div class="license" role="complementary"> |
| Except as otherwise |
| <a href="https://developers.google.com/site-policies.html#restrictions">noted</a>, |
| the content of this page is licensed under a |
| <a href="https://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 license</a>, |
| and examples are licensed under the |
| <a href="https://chromium.googlesource.com/chromium/src/+/master/LICENSE">BSD License</a>. |
| </div> |
| </nav> |
| <main id="main-content"> |
| {% if breadcrumbs %}{{ breadcrumbs }}{%- endif %}{%- if title %}<h3>{{ title }}</h3>{%- endif %} |
| {{content}} |
| </main> |
| </div> |
| </body> |
| {%- endif %} |
| </html> |