2018-12-17 13:41:24 +00:00
|
|
|
package server
|
2016-03-16 22:23:16 +00:00
|
|
|
|
2018-12-17 13:41:24 +00:00
|
|
|
type indexTemplateData struct {
|
|
|
|
InlineScript string
|
2019-01-25 01:32:22 +00:00
|
|
|
Stylesheet string
|
2018-12-17 13:41:24 +00:00
|
|
|
Scripts []string
|
|
|
|
}
|
|
|
|
|
|
|
|
const indexTemplate = `
|
2016-03-16 22:23:16 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<head>
|
2018-11-14 09:11:15 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-01-25 01:32:22 +00:00
|
|
|
<meta name="theme-color" content="#222">
|
2018-11-10 11:18:45 +00:00
|
|
|
|
|
|
|
<title>Dispatch</title>
|
2018-11-14 09:11:15 +00:00
|
|
|
<meta name="description" content="Web-based IRC client.">
|
2018-11-10 11:18:45 +00:00
|
|
|
|
2018-11-17 10:52:36 +00:00
|
|
|
<link rel="preload" href="/init" as="fetch" crossorigin>
|
2018-11-10 11:18:45 +00:00
|
|
|
|
2019-01-25 01:32:22 +00:00
|
|
|
{{if .InlineScript}}
|
2018-12-17 13:41:24 +00:00
|
|
|
<script>{{.InlineScript}}</script>
|
2019-01-25 01:32:22 +00:00
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{range .Scripts}}
|
|
|
|
<script src="{{.}}" defer></script>
|
|
|
|
{{end}}
|
2018-09-18 20:09:08 +00:00
|
|
|
|
2018-11-14 09:11:15 +00:00
|
|
|
<link rel="preload" href="/font/fontello.woff2?48901973" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/RobotoMono-Regular.woff2" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/Montserrat-Regular.woff2" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/Montserrat-Bold.woff2" as="font" type="font/woff2" crossorigin>
|
|
|
|
<link rel="preload" href="/font/RobotoMono-Bold.woff2" as="font" type="font/woff2" crossorigin>
|
2018-11-06 10:13:32 +00:00
|
|
|
|
2019-01-25 01:32:22 +00:00
|
|
|
{{if .Stylesheet}}
|
|
|
|
<link href="{{.Stylesheet}}" rel="stylesheet">
|
2018-12-17 13:41:24 +00:00
|
|
|
{{end}}
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
</head>
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2018-11-10 11:18:45 +00:00
|
|
|
<body>
|
2018-11-14 09:11:15 +00:00
|
|
|
<noscript>This page needs JavaScript enabled to function.</noscript>
|
2019-01-25 01:32:22 +00:00
|
|
|
<div id="root"></div>
|
2018-11-10 11:18:45 +00:00
|
|
|
</body>
|
2018-11-04 06:22:46 +00:00
|
|
|
|
2018-12-17 13:41:24 +00:00
|
|
|
</html>`
|