mirror of
https://github.com/godotengine/doc-status.git
synced 2025-12-31 13:48:23 +03:00
The main table's headers are now clickable to sort columns in ascending or descending order. String columns are sorted alphabetically, description columns are sorted by MISSING vs. OK, and numeric columns are sorted by relative percentages. A custom JS sorting implementation is used, both to avoid a large dependency and to handle the unique format of these table entries. The cursor when hovering over table headers indicates that they can be interacted with.
18 lines
569 B
HTML
18 lines
569 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="author" content="Godot Engine">
|
|
<meta name="description" content="View the current completion status of the Godot class reference online.">
|
|
<meta name="theme-color" content="#3d8fcc">
|
|
<title>{{ .Site.Title }}</title>
|
|
<link rel="icon" href="favicon.png">
|
|
<link rel="stylesheet" href="main.css">
|
|
<script src="sorttable.js"></script>
|
|
</head>
|
|
<body>
|
|
{{ .Content }}
|
|
</body>
|
|
</html>
|