mirror of
https://github.com/coder/coder.git
synced 2026-06-04 05:28:20 +00:00
d70e26d2e3
Since React 19 supports head tags natively, we no longer need to use `react-helmet`. --------- Co-authored-by: ケイラ <mckayla@hey.com> Co-authored-by: Andrew Aquino <dawneraq@gmail.com>
61 lines
2.2 KiB
HTML
61 lines
2.2 KiB
HTML
<!doctype html>
|
|
|
|
<!--
|
|
-####### +######- ########+ ########## ########+. ###########
|
|
+#####--###### +#####--#####+ ############ ########## ####+++#####- ###########
|
|
####- -#### ####- ##### #### ####+ #### #### .#### ###########
|
|
.#### #### #### #### #### ######### ####...+##+ ###########
|
|
####. .#### #### +#### #### +#### #### ####+####### ###########
|
|
#####- -##### ######..###### ############- ########## #### ##### ###########
|
|
.########+ -########. #########+ ########## #### .#### ###########
|
|
-->
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Coder</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#17172E" />
|
|
<meta name="application-name" content="{{ .ApplicationName }}" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="csrf-token" content="{{ .CSRF.Token }}" />
|
|
<meta property="build-info" content="{{ .BuildInfo }}" />
|
|
<meta property="user" content="{{ .User }}" />
|
|
<meta property="entitlements" content="{{ .Entitlements }}" />
|
|
<meta property="appearance" content="{{ .Appearance }}" />
|
|
<meta property="userAppearance" content="{{ .UserAppearance }}" />
|
|
<meta property="experiments" content="{{ .Experiments }}" />
|
|
<meta property="regions" content="{{ .Regions }}" />
|
|
<meta property="docs-url" content="{{ .DocsURL }}" />
|
|
<meta property="logo-url" content="{{ .LogoURL }}" />
|
|
<meta property="tasks-tab-visible" content="{{ .TasksTabVisible }}" />
|
|
<link
|
|
rel="alternate icon"
|
|
type="image/png"
|
|
href="/favicons/favicon-light.png"
|
|
media="(prefers-color-scheme: dark)"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/svg+xml"
|
|
href="/favicons/favicon-light.svg"
|
|
media="(prefers-color-scheme: dark)"
|
|
/>
|
|
<link
|
|
rel="alternate icon"
|
|
type="image/png"
|
|
href="/favicons/favicon-dark.png"
|
|
media="(prefers-color-scheme: light)"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/svg+xml"
|
|
href="/favicons/favicon-dark.svg"
|
|
media="(prefers-color-scheme: light)"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./src/index.tsx"></script>
|
|
</body>
|