github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/manager/html/common.html (about)

     1  {{/*
     2  Copyright 2024 syzkaller project authors. All rights reserved.
     3  Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
     4  */}}
     5  
     6  <!doctype html>
     7  <html>
     8  <head>
     9  	<title>{{.PageTitle}}</title>
    10  	{{HEAD}}
    11  </head>
    12  <body>
    13  	<header id="topbar">
    14  		<table class="position_table">
    15  			<tr>
    16  				<td>
    17  					<h1><a href="/">syzkaller</a>{{if .Name}}: {{.Name}}{{end}}</h1>
    18  				</td>
    19  				<td>
    20  					<form action="/action" method="post">
    21  						<input type="hidden" name="url" value="{{.CurrentURL}}" />
    22  						<button type="submit" name="toggle" value="expert" class="action_button{{if .ExpertMode}}_selected{{end}}" title="Toggle expert mode">
    23  							🧠
    24  						</button>
    25  						<button type="submit" name="toggle" value="pause" class="action_button{{if .Paused}}_selected{{end}}" title="Pause/unpause fuzzing">
    26  							{{if .Paused}}▢️{{else}}⏸️{{end}}
    27  						</button>
    28  					</form>
    29  				</td>
    30  				<td class="search">
    31  					<a href="https://github.com/google/syzkaller/blob/master/docs/" target="_blank">docs</a> |
    32  					<a href="https://groups.google.com/forum/#!forum/syzkaller" target="_blank">mailing list</a> |
    33  					<a href="{{.GitRevisionLink}}" target="_blank">source {{.GitRevision}}</a>
    34  				</td>
    35  			</tr>
    36  		</table>
    37  		<div class="navigation">
    38  			<div class="navigation_tab{{if eq .URLPath "/stats"}}_selected{{end}}">
    39  				<a href='/stats'>πŸ“ˆ stats</a>
    40  			</div>
    41  			<div class="navigation_tab{{if eq .URLPath "/cover"}}_selected{{end}}">
    42  				<a href='/cover'>πŸ“ƒ coverage</a>
    43  			</div>
    44  			<div class="navigation_tab{{if eq .URLPath "/syscalls"}}_selected{{end}}">
    45  				<a href='/syscalls'>πŸ€– syscalls</a>
    46  			</div>
    47  			<div class="navigation_tab{{if eq .URLPath "/corpus"}}_selected{{end}}">
    48  				<a href='/corpus'>πŸ›’ corpus</a>
    49  			</div>
    50  			<div class="navigation_tab{{if eq .URLPath "/vms"}}_selected{{end}}">
    51  				<a href='/vms'>πŸ’» VMs</a>
    52  			</div>
    53  			<div class="navigation_tab{{if eq .URLPath "/config"}}_selected{{end}}">
    54  				<a href='/config'>πŸ”§ config</a>
    55  			</div>
    56  		</div>
    57  	</header>
    58  	<br>
    59  	%s
    60  </body></html>