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