128f6c2f2SEnji Cooper<!DOCTYPE html>
228f6c2f2SEnji Cooper<html lang="{{ site.lang | default: "en-US" }}">
328f6c2f2SEnji Cooper  <head>
428f6c2f2SEnji Cooper    <meta charset="UTF-8">
528f6c2f2SEnji Cooper    <meta http-equiv="X-UA-Compatible" content="IE=edge">
628f6c2f2SEnji Cooper    <meta name="viewport" content="width=device-width, initial-scale=1">
728f6c2f2SEnji Cooper
828f6c2f2SEnji Cooper{% seo %}
928f6c2f2SEnji Cooper    <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
1028f6c2f2SEnji Cooper    <script>
1128f6c2f2SEnji Cooper      window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
1228f6c2f2SEnji Cooper      ga('create', 'UA-197576187-1', { 'storage': 'none' });
1328f6c2f2SEnji Cooper      ga('set', 'referrer', document.referrer.split('?')[0]);
1428f6c2f2SEnji Cooper      ga('set', 'location', window.location.href.split('?')[0]);
1528f6c2f2SEnji Cooper      ga('set', 'anonymizeIp', true);
1628f6c2f2SEnji Cooper      ga('send', 'pageview');
1728f6c2f2SEnji Cooper    </script>
1828f6c2f2SEnji Cooper    <script async src='https://www.google-analytics.com/analytics.js'></script>
1928f6c2f2SEnji Cooper  </head>
2028f6c2f2SEnji Cooper  <body>
2128f6c2f2SEnji Cooper    <div class="sidebar">
2228f6c2f2SEnji Cooper      <div class="header">
2328f6c2f2SEnji Cooper        <h1><a href="{{ "/" | relative_url }}">{{ site.title | default: "Documentation" }}</a></h1>
2428f6c2f2SEnji Cooper      </div>
2528f6c2f2SEnji Cooper      <input type="checkbox" id="nav-toggle" class="nav-toggle">
2628f6c2f2SEnji Cooper      <label for="nav-toggle" class="expander">
2728f6c2f2SEnji Cooper        <span class="arrow"></span>
2828f6c2f2SEnji Cooper      </label>
2928f6c2f2SEnji Cooper      <nav>
3028f6c2f2SEnji Cooper        {% for item in site.data.navigation.nav %}
3128f6c2f2SEnji Cooper        <h2>{{ item.section }}</h2>
3228f6c2f2SEnji Cooper        <ul>
3328f6c2f2SEnji Cooper          {% for subitem in item.items %}
3428f6c2f2SEnji Cooper          <a href="{{subitem.url | relative_url }}">
3528f6c2f2SEnji Cooper            <li class="{% if subitem.url == page.url %}active{% endif %}">
3628f6c2f2SEnji Cooper              {{ subitem.title }}
3728f6c2f2SEnji Cooper            </li>
3828f6c2f2SEnji Cooper          </a>
3928f6c2f2SEnji Cooper          {% endfor %}
4028f6c2f2SEnji Cooper        </ul>
4128f6c2f2SEnji Cooper        {% endfor %}
4228f6c2f2SEnji Cooper      </nav>
4328f6c2f2SEnji Cooper    </div>
4428f6c2f2SEnji Cooper    <div class="main markdown-body">
4528f6c2f2SEnji Cooper      <div class="main-inner">
4628f6c2f2SEnji Cooper        {{ content }}
4728f6c2f2SEnji Cooper      </div>
4828f6c2f2SEnji Cooper      <div class="footer">
4928f6c2f2SEnji Cooper        GoogleTest &middot;
5028f6c2f2SEnji Cooper        <a href="https://github.com/google/googletest">GitHub Repository</a> &middot;
5128f6c2f2SEnji Cooper        <a href="https://github.com/google/googletest/blob/main/LICENSE">License</a> &middot;
5228f6c2f2SEnji Cooper        <a href="https://policies.google.com/privacy">Privacy Policy</a>
5328f6c2f2SEnji Cooper      </div>
5428f6c2f2SEnji Cooper    </div>
5528f6c2f2SEnji Cooper    <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js" integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=" crossorigin="anonymous"></script>
5628f6c2f2SEnji Cooper    <script>anchors.add('.main h2, .main h3, .main h4, .main h5, .main h6');</script>
5728f6c2f2SEnji Cooper  </body>
5828f6c2f2SEnji Cooper</html>
59