1f92157deSopenharmony_ci<!DOCTYPE html>
2f92157deSopenharmony_ci<html lang="{{ site.lang | default: "en-US" }}">
3f92157deSopenharmony_ci  <head>
4f92157deSopenharmony_ci    <meta charset="UTF-8">
5f92157deSopenharmony_ci    <meta http-equiv="X-UA-Compatible" content="IE=edge">
6f92157deSopenharmony_ci    <meta name="viewport" content="width=device-width, initial-scale=1">
7f92157deSopenharmony_ci
8f92157deSopenharmony_ci{% seo %}
9f92157deSopenharmony_ci    <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10f92157deSopenharmony_ci    <script>
11f92157deSopenharmony_ci      window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
12f92157deSopenharmony_ci      ga('create', 'UA-197576187-1', { 'storage': 'none' });
13f92157deSopenharmony_ci      ga('set', 'referrer', document.referrer.split('?')[0]);
14f92157deSopenharmony_ci      ga('set', 'location', window.location.href.split('?')[0]);
15f92157deSopenharmony_ci      ga('set', 'anonymizeIp', true);
16f92157deSopenharmony_ci      ga('send', 'pageview');
17f92157deSopenharmony_ci    </script>
18f92157deSopenharmony_ci    <script async src='https://www.google-analytics.com/analytics.js'></script>
19f92157deSopenharmony_ci  </head>
20f92157deSopenharmony_ci  <body>
21f92157deSopenharmony_ci    <div class="sidebar">
22f92157deSopenharmony_ci      <div class="header">
23f92157deSopenharmony_ci        <h1><a href="{{ "/" | relative_url }}">{{ site.title | default: "Documentation" }}</a></h1>
24f92157deSopenharmony_ci      </div>
25f92157deSopenharmony_ci      <input type="checkbox" id="nav-toggle" class="nav-toggle">
26f92157deSopenharmony_ci      <label for="nav-toggle" class="expander">
27f92157deSopenharmony_ci        <span class="arrow"></span>
28f92157deSopenharmony_ci      </label>
29f92157deSopenharmony_ci      <nav>
30f92157deSopenharmony_ci        {% for item in site.data.navigation.nav %}
31f92157deSopenharmony_ci        <h2>{{ item.section }}</h2>
32f92157deSopenharmony_ci        <ul>
33f92157deSopenharmony_ci          {% for subitem in item.items %}
34f92157deSopenharmony_ci          <a href="{{subitem.url | relative_url }}">
35f92157deSopenharmony_ci            <li class="{% if subitem.url == page.url %}active{% endif %}">
36f92157deSopenharmony_ci              {{ subitem.title }}
37f92157deSopenharmony_ci            </li>
38f92157deSopenharmony_ci          </a>
39f92157deSopenharmony_ci          {% endfor %}
40f92157deSopenharmony_ci        </ul>
41f92157deSopenharmony_ci        {% endfor %}
42f92157deSopenharmony_ci      </nav>
43f92157deSopenharmony_ci    </div>
44f92157deSopenharmony_ci    <div class="main markdown-body">
45f92157deSopenharmony_ci      <div class="main-inner">
46f92157deSopenharmony_ci        {{ content }}
47f92157deSopenharmony_ci      </div>
48f92157deSopenharmony_ci      <div class="footer">
49f92157deSopenharmony_ci        GoogleTest &middot;
50f92157deSopenharmony_ci        <a href="https://github.com/google/googletest">GitHub Repository</a> &middot;
51f92157deSopenharmony_ci        <a href="https://github.com/google/googletest/blob/main/LICENSE">License</a> &middot;
52f92157deSopenharmony_ci        <a href="https://policies.google.com/privacy">Privacy Policy</a>
53f92157deSopenharmony_ci      </div>
54f92157deSopenharmony_ci    </div>
55f92157deSopenharmony_ci    <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js" integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=" crossorigin="anonymous"></script>
56f92157deSopenharmony_ci    <script>anchors.add('.main h2, .main h3, .main h4, .main h5, .main h6');</script>
57f92157deSopenharmony_ci  </body>
58f92157deSopenharmony_ci</html>
59