- Add deployment-name branding to titles, mastheads, and OG tags - Share one grant delivery-state query with lineage across grants surfaces - Show pool status/usage, org owners, and config readiness - Make billing views projection-aware with recency and sync vocabulary - Guard FedWiki creation without domains and render route-aware 404s
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>{{ .Status }} {{ .StatusText }} - {{ deploymentName }}</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="/static/bootstrap.css" rel="stylesheet">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
|
|
|
|
<link href="/static/app.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="d-flex flex-column vh-100">
|
|
<nav class="navbar navbar-dark bg-dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="/">{{ deploymentName }}</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="d-flex flex-column flex-grow-1 justify-content-center align-items-center text-center p-4">
|
|
<h1 class="display-5">{{ .Status }} {{ .StatusText }}</h1>
|
|
<p class="lead mt-2">{{ .Message }}</p>
|
|
<a class="btn btn-primary mt-3" href="/">Back to the dashboard</a>
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|