1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:27:35 +00:00

Ladybird+LibWeb: Add initial about:version internal page

This commit is contained in:
Bastiaan van der Plaat 2024-01-12 19:41:26 +01:00 committed by Tim Flynn
parent 05c0640474
commit cde14901bc
7 changed files with 100 additions and 1 deletions

View file

@ -9,6 +9,7 @@
<ul>
<li><a href="about:about">about:about</a></li>
<li><a href="about:newtab">about:newtab</a></li>
<li><a href="about:version">about:version</a></li>
</ul>
</body>
</html>

View file

@ -0,0 +1,53 @@
<!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@ <!-- FIXME: Add build commit hash --></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>
<!-- FIXME: Add these fields
<tr>
<th>Command Line:</th>
<td></td>
</tr>
<tr>
<th>Executable Path:</th>
<td></td>
</tr> -->
</table>
</body>
</html>