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