Export the reviewed allowlisted snapshot from private source commit 05928cebd01b586cf9e9d4b8c8537a7605a6068c. This records the exact candidate, bounded capacity result, stateful migration scratch requirement, authenticated batch identity proof, and immediate live acceptance evidence. AI-Assisted: OpenAI Codex Signed-off-by: Cole Speelman <crspeelman@gmail.com>
15 lines
510 B
Plaintext
15 lines
510 B
Plaintext
<?sando go
|
|
package site
|
|
|
|
func Head(view HeadView)
|
|
?>
|
|
<?# SPDX-License-Identifier: AGPL-3.0-only ?>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="<?= view.Description ?>">
|
|
<link rel="canonical" href="<?= view.CanonicalURL ?>">
|
|
<link rel="manifest" href="/manifest.webmanifest">
|
|
<link rel="stylesheet" href="<?= view.Assets.StylePath ?>">
|
|
<script src="<?= view.Assets.ScriptPath ?>" defer></script>
|
|
<title><?= view.Title ?></title>
|