github.com/web-platform-tests/wpt.fyi@v0.0.0-20240530210107-70cf978996f1/webapp/templates/processor.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  <head>
     4  {{ template "_head_common.html" . }}
     5  <script type="module" src="/components/wpt-processor.js"></script>
     6  <style>
     7    html, body { height: 100% }
     8    #full-screen-content {
     9      margin: 0 auto;
    10      max-width: 1200px;
    11      display: flex;
    12      flex-direction: column;
    13      height: 98%;
    14    }
    15    wpt-processor {
    16      flex-grow: 1;
    17    }
    18  </style>
    19  </head>
    20  <body>
    21  <div id="full-screen-content">
    22    <wpt-header {{if .User}}user="{{.User.GitHubHandle}}"{{end}}></wpt-header>
    23    <wpt-processor></wpt-processor>
    24  </div>
    25  </body>
    26  </html>