1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <title><%= title %></title> 6 <meta property="og:title" content="<%= title %>"> 7 <meta property="og:site_name" content="Perfetto"> 8 <meta property="og:type" content="website"> 9 <meta property="og:locale" content="en"> 10 <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> 11 <link rel="canonical" href="https://perfetto.dev<%= fileName.replace('/index.html', '/') %>"> 12 <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,500,600,800&display=swap" rel="stylesheet"> 13 <link href="https://fonts.googleapis.com/icon?family=Roboto+Mono" rel="stylesheet"> 14 <link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet"> 15 <link rel="stylesheet" href="/assets/style.css"> 16 <link rel="stylesheet" href="/assets/tomorrow-night.css"> 17 <link rel="shortcut icon" href="/assets/favicon.png" /> 18 <script type="text/javascript" src="/assets/script.js"></script> 19</head> 20<body> 21<header class="site-header"> 22 <div class="brand"> 23 <a href="/"> 24 <img src="/assets/brand.png"> 25 <% if (fileName.startsWith('/docs/')) { %> 26 <span class="brand-docs">Docs</span> 27 <% } %> 28 </a> 29 </div> 30 <a href="#toggle" class="menu"><i class="material-icons-round">menu</i></a> 31 32 <a href="/docs/">Docs</a> 33 <a href="/docs/contributing/getting-started#community">Community</a> 34 <a href="https://ui.perfetto.dev/">Trace Viewer</a> 35 <a href="https://github.com/google/perfetto">GitHub</a> 36</header> 37