1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 22:27:35 +00:00
serenity/Base/res/ladybird/templates/version.html

52 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About @browser_name@</title>
<style>
img {
float: left;
image-rendering: pixelated;
margin-right: 10px;
}
th {
text-align: right;
}
td {
font-family: monospace;
}
</style>
</head>
<body>
<header>
<img src="resource://icons/32x32/app-browser.png">
<h1>About @browser_name@</h1>
</header>
<table>
<tr>
<th>Version:</th>
<td>@browser_version@</td>
</tr>
<tr>
<th>Arch:</th>
<td>@arch_name@</td>
</tr>
<tr>
<th>Operating System:</th>
<td>@os_name@</td>
</tr>
<tr>
<th>User Agent:</th>
<td>@user_agent@</td>
</tr>
<tr>
<th>Command Line:</th>
<td>@command_line@</td>
</tr>
<tr>
<th>Executable Path:</th>
<td>@executable_path@</td>
</tr>
</table>
</body>
</html>