{{/*
The SourceHut chrome. The brand, the service switcher, the login block and
the environment banner are NOT rendered here: they come from sr-ht-ecore's
shared partials ("srht-env-banner", "srht-nav"), which every custom service
on this instance draws from one copy. The dot is this package's viewData,
which embeds chrome.Page, so the fields those partials read promote into it.
What is left is the document and three seams:
head — extra <head> content. A block, so a page that needs none renders.
content — the page itself; every page template defines it.
scripts — nothing uses it yet; the proposal page's script goes in "head"
with defer.
*/}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Title}}</title>
<link rel="icon" type="image/svg+xml" href="/static/logo.svg">
{{/* Empty when this binary was built without `make css`. The link is
guarded rather than emitted empty: <link href=""> re-requests the page
it is on, which is a page load per page load. */}}
{{if .StyleHref}}<link rel="stylesheet" href="{{.StyleHref}}">{{end}}
{{block "head" .}}{{end}}
</head>
<body>
{{template "srht-env-banner" .}}
<nav class="container navbar navbar-light navbar-expand-sm">
{{template "srht-nav" .}}
</nav>
<div class="{{.ContainerClass}}">
{{template "content" .}}
</div>
</body>
</html>